[Android] Device supports x86,armeabi-v7a,but APK only supports armabi

Copyright: please indicate the source https://blog.csdn.net/weixin_40937100/article/details/89426575

Device supports x86,armeabi-v7a,but APK only supports armabi

This question is about the Android emulator of cpu architecture, armeabi-v7a and x86 architectures are different cpu type, app run time are not compatible.

The solution:
find the module: app of this module in the build.gradle

NDK {
abiFilter 'armeabi'
}

Read:

NDK {
abiFilters "armeabi-v7a", "x86"
}

The problem is solved

Guess you like

Origin blog.csdn.net/weixin_40937100/article/details/89426575