skip to Main Content

Flutter Firebase not working when used in release mode while the app is working perfectly fine when in debug mode.
I have added SHA-1 fingerprints but it didn’t help.

ps. I have also connected back4app database in the app.

2

Answers


  1. Chosen as BEST ANSWER

    I solved the error by adding these two lines in the android/app/build.gradle :

    buildTypes {
        release {
            shrinkResources false
            minifyEnabled false
            signingConfig signingConfigs.debug
        }
    }
    

    enter image description here


Please signup or login to give your own answer.
Back To Top
Search