I am using firebase in my app, in debug apk everything works fine but when I change my build type to release and sign my apk and run the app data is not loaded am I doing anything wrong with rules?
Can't attach debugger to a release mode apk so not getting how to debug this.
Custom sign-in works fine, I am able to login with my registered email and password but data and images are not loading.
I logged in and then trying to show data, I think calls are authenticated
my database and storage rules
Storage Rule
service firebase.storage {
match /b/example-frienda-backend.appspot.com/o {
match /{allPaths=**} {
allow read, write: if request.auth != null;
}
}
}
Datastore rules
{
"rules": {
".read": "auth != null",
".write": "auth != null",
"geofire": {
".indexOn": ["g"],
}
}
}