Today I will let you know the flutter issue of Failure [INSTALL_FAILED_NO_MATCHING_ABIS] and its fix.
Procedure
- Add the following config in your app/build.gradle
android {
splits {
abi {
enable true
reset()
universalApk true
}
}
}
flutter {
source '../..'
}
Release AppBundle / APK
- Run the following command to generate appbundle
flutter build appbundle
- Run the following command to generate apk
flutter build apk
No comments:
Post a Comment