错误:(512)***“wordlist”函数的非数字第二个参数:'16z'。停止

时间:2018-03-07 10:22:44

标签: android opencv android-ndk

我一直在关注如何在Android Studio中使用opencv和ndk的一些教程。我已经尝试了Stack Overflow上给出的所有可能的解决方案。下面是我的build.gradle文件:

    apply plugin: 'com.android.application'

    android {
compileSdkVersion 26
defaultConfig {
    applicationId "medianet.com.helloopencv"
    minSdkVersion 16
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
sourceSets.main {
    jni.srcDirs = [] //disable automatic ndk-build call
}
task ndkBuild(type: Exec, description: 'Compile JNI source via NDK') {
    commandLine "C:/Users/firas/AppData/Local/Android/sdk/ndk-bundle/ndk-build.cmd",
            'NDK_PROJECT_PATH=build/intermediates/ndk',
            'NDK_LIBS_OUT=src/main/jniLibs',
            'APP_BUILD_SCRIPT=src/main/jni/Android.mk',
            'NDK_APPLICATION_MK=src/main/jni/Application.mk'
}
tasks.withType(JavaCompile) {
    compileTask -> compileTask.dependsOn ndkBuild
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

    dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation project(':openCVLibrary330')
}

1 个答案:

答案 0 :(得分:1)

实际上解决方案很简单,这是我的错,我需要做的就是去Android.mk文件并更改:APP_PLATFORM:= android-16z到APP_PLATFORM:= android-16。