天天看點

Error:Execution failed for task ':app:transformNativeLibsWithStripDebugSymbolForDebug'.

AS編譯報報這個錯誤:

Error:Execution failed for task ':app:transformNativeLibsWithStripDebugSymbolForDebug'.
> A problem occurred starting process 'command '
C:\Users\hpp\AppData\Local\Android\Sdk\ndk-bundle\toolchains\mips64el-linux-android-4.9\
prebuilt\windows-x86_64\bin\mips64el-linux-android-strip''
           

解決:

這是因為 NDK r17 之後不再支援 mips 平台,在 build.gradle 裡增加如下配置可解決

android {

    ...

packagingOptions {

        doNotStrip '*/mipsmips64/*.so'

    }

}