Show your blocks
I think that you should add a block that when Screen 1 initialize ask for permission. Camera access
How do i do that?
BTW, Welcome to Kodular Community
Thank You…and also I would like to share this with you
Same problem
Oh! I see
How can I?
Wait one second I am doing on blocks
Oops sorry
What ???
I asked sorry for hurrying you up
Go to storage -> Rules tab
and then add this
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write;
}
}
}
In Firebase
// Anyone can read or write to the bucket, even non-users of your app.
// Because it is shared with Google App Engine, this will also make
// files uploaded via GAE public.
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read
allow write;
}
}
}
Already done
Is it fine?
That is not a permission it is android.permission.CAMERA it is “.” not “_”
Sorry I mentioned it above
Ask for this
android.permission.READ_EXTERNAL_STORAGE
Ok check that or mine