Ask Your Question

AllXS's profile - activity

2015-05-19 02:48:11 -0600 received badge  Enthusiast
2015-05-05 12:36:55 -0600 commented question AndroidStudio/NDK - finished with non-zero exit value2

I've had the same problem, and I resolved it by addind this :
sourceSets {
     main {
          res.srcDirs = ['src/main/res']
          jniLibs.srcDirs = ['src/main/jniLibs']
          jni.srcDirs = [] // This prevents the auto generation of Android.mk
     }
}
to my build.gradle (the one in app) in the android object. Maybe it will work for you ;)