NDK支持是一项实验性功能,Android Studio中尚未支持所有用例错误?

时间:2016-10-16 08:41:55

标签: java android c++ android-studio android-ndk

我想将NDK集成到Android工作室,但我面临的NDK支持是一项实验性功能 用例尚不支持错误。我已经使用SDK管理器下载了NDK并且已经接通了NDK C:\ Users \用户的\应用程序数据\本地\的Android \ SDK \ NDK束。我还为Java和C ++交互创建了NativePanorama java类。以下是NativePanorama.java类的代码

     public class NativePanorama {



     public native static void processPanorama(long[] imageAddressArray,
                                                  long outputAddress);
        {

        }
}

我在终端中使用javah命令为processPanorama创建相应的C ++标头 NativePanorama java类中的方法。这是创建的com_example_the_myapplication_NativePanorama.h c ++头文件。

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>

    /* Header for class com_example_the_myapplication_NativePanorama */

    #ifndef _Included_com_example_the_myapplication_NativePanorama
    #define _Included_com_example_the_myapplication_NativePanorama
    #ifdef __cplusplus
    extern "C" {
    #endif
    /*
     * Class:     com_example_the_myapplication_NativePanorama
     * Method:    processPanorama
     * Signature: ([JJ)V
     */
    JNIEXPORT void JNICALL Java_com_example_the_myapplication_NativePanorama_processPanorama
    (JNIEnv *, jclass, jlongArray, jlong);

    #ifdef __cplusplus
    }
    #endif
    #endif

这里也是com_example_the_myapplication_NativePanorama.cpp c ++源文件。

#include "com_example_panorama_NativePanorama.h"
JNIEXPORT void JNICALL
Java_com_example_panorama_NativePanorama_processPanorama
(JNIEnv * env, jclass clazz, jlongArray imageAddressArray, jlong
outputAddress){
}  

可能是build.gradle文件中的错误,这里是我的build.gradle(app)文件

import org.apache.tools.ant.taskdefs.condition.Os
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.example.the.myapplication"
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    // begin NDK OPENCV
    sourceSets.main {
        jni.srcDirs = [] //disable automatic ndk-build call
    }
    task ndkBuild(type: Exec, description: 'Compile JNI source via NDK') {
        def rootDir = project.rootDir
        def localProperties = new File(rootDir, "local.properties")
        Properties properties = new Properties()
        localProperties.withInputStream { instr ->
            properties.load(instr)
        }
        def ndkDir = properties.getProperty('ndk.dir')
        if (Os.isFamily(Os.FAMILY_WINDOWS)) {
            commandLine "$ndkDir\\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'
        } else {
            commandLine "$ndkDir/ndk-build",
                    '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 {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile project(":opencv-java")
}

在Java中还有Reports本机方法声明,其中在NativePanorama.java类的项目错误中找不到相应的jni函数。

我该如何解决这些问题?

1 个答案:

答案 0 :(得分:7)

以下是解决方案:

将您的Android Studio更新为最新版本或最新的公开预发布版本。

Android Studio 2.2.1目前是最新版本,它内置了适当的C ++支持。他们仍在使用它,有些东西可能仍然不受支持,但使用C ++肯定会在更新的版本上更好地工作。 Ofcourse还确保您的Android SDK保持最新状态。