Dali
Dali copied to clipboard
The application could not be installed: INSTALL_FAILED_NO_MATCHING_ABIS
Installation did not succeed. The application could not be installed: INSTALL_FAILED_NO_MATCHING_ABIS Installation failed due to: 'null'
how can i fix this ?
Add this into. your gradle(Main Module).
defaultConfig {
...
// add this
ndk {
abiFilters 'arm64-v8a', 'x86_64', "x86", "armeabi-v7a"
}
}