java.lang.UnsatisfiedLinkError:无法从加载器dalvik.system.PathClassLoader加载findLibrary返回null

时间:2015-03-02 11:38:12

标签: android-ndk

我理解这是多次被问到的,但在发布我的查询之前,我已经做了彻底的研究。

我已将Android Studio更新为2015年3月2日版本1.1.0的最新版本。我认为仍然等级不会自行打包.so文件。

我在/ jni文件夹中写了NewNDK.c。运行ndk-build脚本,并在/ libs中创建.so文件。根据其中一篇文章中的建议,我将libs修改为lib。

即便如此,我收到java.lang.UnsatisfiedLinkError:无法从loader dalvik.system.PathClassLoader加载findLibrary返回null错误。

这些帖子没有说明要修改哪些文件。我是Android新手,请求您的帮助。

我已将问题缩小到:1。Gradle不包装2.应修改Gradle脚本。

build.gradle(Module:app)如下:

apply plugin:'com.android.application'

android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"

    defaultConfig {
        applicationId "com.example.raghu.newndk"
        minSdkVersion 17
        targetSdkVersion 17
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
}

build.gradle(项目)如下:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.1.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

请告诉我遗漏的内容。

谢谢!

2 个答案:

答案 0 :(得分:3)

  

根据其中一篇文章中的建议,我将libs修改为lib。

这样做真的没有意义。 lib是.so文件进入APK的文件夹,但如果您的项目组织正确,此步骤将由打包工具直接处理。

在Android Studio项目中,您应该将 .so文件放在jniLibs/<ABI>内,其中<ABI>是每个.so文件的目标体系结构( armeabi < / em>, x86 ...与从 libs 中的NDK生成它们的方式相同。

因此,您可以将libs文件夹重命名为jniLibs,或者配置您的版本,以便直接集成libs中的.so文件:

android {
    ...
    sourceSets.main {
        jniLibs.srcDir 'src/main/libs'
    }
}

答案 1 :(得分:0)

打开项目属性&gt;去Andriod选项&gt;选择高级选项卡&gt;只需取消选中&#34; armeabi&#34;,&#34; armeabi-v7a&#34;,&#34; arm64-v8a&#34;并保存项目。

错误将被删除。