Frederic
Frederic

Reputation: 3284

Signed Flutter android app can't access Firebase

I have created a signed release of my Flutter android app. It cannot access Firebase. In debug it works fine.

I have signed the app using Google Play App Signing and have already added the corresponding SHA-1 from Google Play Store to Firebase but to no avail. This is the solution stated in most similar questions.

I have added

<uses-permission android:name="android.permission.INTERNET"/>

in AndroidManifest. Any idea what else could be wrong? How could I debug this?

Thank you in advance

Upvotes: 0

Views: 129

Answers (1)

Frederic
Frederic

Reputation: 3284

Turns out there is this Bug. When using android.enableR8.fullMode=true in gradle.properties, firebase auth breaks.

Upvotes: 1

Related Questions