Muhammad Shafique
Muhammad Shafique

Reputation: 609

Fatal Exception: java.lang.RuntimeException Flutter

Hi there i have published my app on playstore and found this issue in firebase crashlytics and I don’t know what this is about. Please help me fix this. enter image description here

Upvotes: 1

Views: 413

Answers (1)

Răzvan Puiu
Răzvan Puiu

Reputation: 731

Try to change the abiFilters in build.gradle under android/app/build

defaultConfig { 
    ndk { 
        abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'mips', 'mips64', 'arm64-v8a' 
    }
}

Documentation can be found here: https://developer.android.com/ndk/guides/abis#gc

Upvotes: 1

Related Questions