Reputation: 609
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.
Upvotes: 1
Views: 413
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