android NDK C在android studio 2.2上打印日志?

时间:2016-11-20 11:29:45

标签: android android-ndk ndk-build

开发ndk编程。如何解决它的错误。请给我

错误

  

错误:任务':app:linkAppArm64-v8aDebugSharedLibrary'的执行失败。   构建操作失败。   链接libApp.so时链接器失败。   请参阅完整日志:file:/// C:/android/NDKTutorialTwo/app/build/tmp/linkAppArm64-v8aDebugSharedLibrary/output.txt

Output.txt的

  

请参阅file:/// C:/android/NDKTutorialTwo/app/build/tmp/linkAppArm64-v8aDebugSharedLibrary/output.txt,了解linkAppArm64-v8aDebugSharedLibrary的所有输出。   链接libApp.so失败。   C:/androidNDK/android-ndk-r12b/toolchains/aarch64-linux-android-4.9/prebuilt/windows/bin /../ LIB / GCC / aarch64-Linux的机器人/ 4.9.x /../../ ../../aarch64-linux-android/bin/ld.exe:找不到-lmui   collect2.exe:错误:ld返回1退出状态

     

完成linkAppArm64-v8aDebugSharedLibrary,请参阅完整日志文件:/// C:/android/NDKTutorialTwo/app/build/tmp/linkAppArm64-v8aDebugSharedLibrary/output.txt。

应用级Gradle apply plugin:'com.android.model.application'

model{
    android {
        compileSdkVersion 24
            buildToolsVersion "24.0.2"
            defaultConfig {
                applicationId "com.metroinfrasys.ndktutorialtwo"
                minSdkVersion.apiLevel 16
                targetSdkVersion.apiLevel 24
                versionCode 1
                versionName "1.0"
                testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
            }
            buildTypes {
                release {
                    minifyEnabled false
                    proguardFiles.add(file('proguard-android.txt'))
                }
            }

            ndk {
                moduleName "App"
                ldLibs.add("EGL")
                ldLibs.add("android")
                ldLibs.add("GLESv2")
                ldLibs.add("dl")
                ldLibs.add("log")
                ldLibs.add("mui")
            }
        }
    }

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
            exclude group: 'com.android.support', module: 'support-annotations'
        })
        compile 'com.android.support:appcompat-v7:24.2.0'
        testCompile 'junit:junit:4.12'
    }

请提供任何解决方案

0 个答案:

没有答案