【发布时间】:2018-09-19 19:39:51
【问题描述】:
我的应用有问题。我使用三星 s8 并且我的应用程序运行良好,直到我更新到 android oreo。我卸载了我的应用程序并尝试再次运行,但出现错误 install_failed_no_matching_abis failed to extract native libraries res=-113 。我的应用程序在其他设备上仍然可以正常运行。我读了这些帖子: Error INSTALL_FAILED_NO_MATCHING_ABIS after updating Nexus 5x to Oreo INSTALL_FAILED_NO_MATCHING_ABIS error on Android 8 [INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]
但似乎没有什么对我有用。我不知道是否必须删除一些库,提到的库在我的应用程序中不存在,或者我是否必须添加一些东西。我也尝试添加
splits {
abi {
enable true
reset()
include 'x86', 'armeabi-v7a'
universalApk true
}
}
在我的 gradle 中,但它也不起作用。
【问题讨论】:
标签: android