【发布时间】:2019-06-30 02:56:30
【问题描述】:
我已经尝试了 stackoverflow 上所有可能的解决方案。但是我一次又一次地遇到同样的错误。不确定它来自哪里。 我关注了这个thread。并将 build.gradle 文件更新为
splits {
abi {
enable true
reset()
include 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'mips', 'mips64', 'arm64-v8a'
universalApk false
}
}
这是我遇到的错误
Installation failed with message INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113.
It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-installing.
WARNING: Uninstalling will remove the application data!
Do you want to uninstall the existing application?
直到昨天晚上,这一切都很好。但今天它毁了我的一天。有人可以帮我解决这个问题吗?
我没有使用 genymotion 或弧焊机等其他应用程序。我在 android 模拟器上收到此错误。
我尝试在真实设备上运行它,但同样的问题。
问候
【问题讨论】:
-
你的模拟器的ABI是什么?
-
它是 x86_64,API 28
-
@Lokesh
x86_64... 那么您是否在jniLibs中放置了任何特定库,例如仅armeabi-v7a特定库? -
@GenoChen 有一个,但我删除了。
标签: java android android-emulator