NDK Integration in Android Studio Error

后端 未结 1 933
我在风中等你
我在风中等你 2021-01-04 20:16

I am using Android studio version 1.3.1 and try to integrate the NDK by going to local.proprties and writing ndk.dir= and I got this error

Error:Execution failed for

相关标签:
1条回答
  • 2021-01-04 20:53

    Add this to your build.gradle :

    android{
            sourceSets {
                  main {
                      jni.srcDirs = []
                  }
              }
           }
    
    0 讨论(0)
提交回复
热议问题