1

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

1 Answers1

1

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

Răzvan Puiu
  • 671
  • 1
  • 6
  • 24