aarch64-linux-android-strip file Missing

后端 未结 10 2007
萌比男神i
萌比男神i 2020-12-23 09:07

I updated to Android studio 2.3 and my project got these errors

Error:org.gradle.process.internal.ExecException: A problem occurred starting process \'comman         


        
10条回答
  •  无人及你
    2020-12-23 09:24

    I have Android Studio 3.1.2 and after I approved the IDE suggested updates I got the next errors:

    org.gradle.api.tasks.TaskExecutionException: Execution failed for task '...'.
    
    Caused by: org.gradle.process.internal.ExecException: A problem occurred starting process 'command '/Users/.../Library/Android/sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/darwin-x86_64/bin/mips64el-linux-android-strip'
    
    Caused by: net.rubygrapefruit.platform.NativeException: Could not start '/Users/.../Library/Android/sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/darwin-x86_64/bin/mips64el-linux-android-strip'
    
    Caused by: java.io.IOException: Cannot run program "/Users/.../Library/Android/sdk/ndk-bundle/toolchains/mips64el-linux-android-4.9/prebuilt/darwin-x86_64/bin/mips64el-linux-android-strip" (in directory "/Users/.../.../.../app"): error=2, No such file or directory
    
    Caused by: java.io.IOException: error=2, No such file or directory
    

    It looks like there is a problem with NDK version 17.0.4754217.

    Since I don't use ndk components in my project for me the solution was removing NDK from the SDK Manager.

    Go to SDK Manager -> SDK Tools tab -> uncheck NDK -> Apply.

提交回复
热议问题