Hello, this error 908 appears only on devices with android 11. When pressing the login button with google firebase, it asks for permission to access, even accepting it shows the error.
I read other posts and saw something related to adding in the manifest, how do you do it?
Yes, but it’s a bug and will remain a bug (until fixed). It unnecessarily and incorrectly requests WRITE permission on Android 11+, although that permission no longer exists there!
“” Replaced line <uses-permission android:maxSdkVersion="29" android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> with <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> in the manifest. “”
I changed the lines, the error disappeared but unfortunately I can’t get past the login screen when trying to log in with google firebase.
That doesn’t make any sense at all, because declaring WRITE in the manifest is completely harmless for Android 11+ as well, since it’s handled there just like READ.