Android Studio事件日志中提示:Session ‘app’: Error Installing APK,推测原因应该是系统要求的平台和安装的平台不一致,更换了一个一致版本的虚拟设备后运行成功。
运行程序,总是报错:
The currently selected variant “debug” uses split APKs, but none of the 1 split apks are compatible with the current device with density “320” and ABIs “x86”.
这种时候可能就跟你应用中的ndk引用的有关了,在应用build.gradle的ndk中加入x86文件,
ndk {
abiFilters ‘armeabi’,‘x86’
}
abiFilters ‘armeabi’,‘x86’
}
之后运行就可以了;