CreateProcess error=2, The system cannot find the file specified [Android studio]

后端 未结 7 1877
离开以前
离开以前 2020-12-09 09:10

I upgraded my windows and reinstalled Android studio 0.3.2. I am using windows8.1 Pro now and installed java x64, I also did set up JAVA_HOME E

7条回答
  •  温柔的废话
    2020-12-09 09:22

    I hope this answer can be a reference for new comer!

    I got same issue and I stuck for this error!

    Finally I got solution here!

    After I explore the error detail, I got message that there are issue with NDK. Try to disable NDK or add the following code in your gradle.build

    packagingOptions{
        doNotStrip '*/mips/*.so'
        doNotStrip '*/mips64/*.so'
    }
    

提交回复
热议问题