ndk书写位置的问题

defaultConfig {
    applicationId "com.chenql.helloandroidjni"
    minSdkVersion 22
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    ndk {
        moduleName "hello-android-jni"  //一定要在范围里
    }
}

ndk 要在defaultConfig同一个范围内,不能象下面一样。

defaultConfig {
    applicationId "com.chenql.helloandroidjni"
    minSdkVersion 22
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

 ndk {
        moduleName "hello-android-jni"
 }
这样分开会出现错误。

posted on 2017-10-29 01:21  高速转弯  阅读(127)  评论(0编辑  收藏  举报

导航