使用mips64el-linux-android-strip,transformNativeLibsWithStri
我在
android studio中收到此错误,请有人知道如何解决它让我知道
Execution failed for task ':q84sale-base:transformNativeLibsWithStripDebugSymbolForRelease'. > A problem occurred starting process 'command '/Users/amira/Library/Android/sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/darwin-x86_64/bin/mips64el-linux-android-strip'' 解决方法
原因:
根据https://github.com/android-ndk/ndk/wiki/Changelog-r18#known-issues
如上所述:
直接解决方案是: 从你的TOP-LEVEL build.gradle中,将android gradle插件的类路径更改为3.2.1或更高版本. classpath 'com.android.tools.build:gradle:3.2.1' 但是,如果您想坚持使用现有的Gradle插件版本,那么解决方法/解决方案如下: 选项1: 自ndk-17以来,没有更多的mips架构.因此,您可以降级NDK(对于旧版本的NDK,请从此处查看:https://developer.android.com/ndk/downloads/older_releases)或添加abiFilters以排除mips ABI. 看到你正在使用ndk-bundle这是Android Studio的默认ndk路径设置.您可以从local.properties配置此路径,使其指向您的NDK版本,例如r16b,而不是默认的ndk-bundle. ndk.dir=<path>/android-ndk-r16b sdk.dir=<path>/sdk 选项2: 使用以下配置仅过滤必要的ABI. android { // Similar to other properties in the defaultConfig block,you can override // these properties for each product flavor in your build configuration. defaultConfig { ndk { // Tells Gradle to build outputs for the following ABIs and package // them into your APK. abiFilters 'x86','x86_64','armeabi-v7a','arm64-v8a' } } } 或者如果你正在使用cmake buildTypes { debug { externalNativeBuild { cmake { abiFilters 'x86','arm64-v8a' } } } release { externalNativeBuild { cmake { abiFilters 'x86','arm64-v8a' } } } } 选项3: 另一种解决方法是使用以下配置跳过mips的剥离: android { ... packagingOptions{ doNotStrip '*/mips/*.so' doNotStrip '*/mips64/*.so' } ... } 为您的案例选择最佳选择. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |