Android studio ndk error: *** target pattern does not contain `% '. Stop

2 answers

Please switch to the latest version of Android-NDK (android-ndk-r10e in my case).

I had this problem with the following configuration - Eclipse luna, Android SDK and Android-ndk-r9b.

When I updated the NDK, the problem was resolved.

0
source

, build.gradle. Android-:

sourceSets.main {
    jniLibs.srcDir 'src/main/libs'
    jni.srcDirs = [] //disable automatic ndk-build call
}
-1

Source: https://habr.com/ru/post/1544848/


All Articles