6

使用 aviary android sdk 使用 android studio 和 gradle build。生成的应用程序在所有具有 32 位架构的设备上运行良好。

相同的应用程序在 64 位设备中出现以下错误 [例如。索尼C4]

    java.lang.UnsatisfiedLinkError: dalvik.system.PathClassLoader[DexPathList[[zip file 
"/data/app/com.myapp/base.apk"],nativeLibraryDirectories=[/data/app/com.myapp/lib/arm64, /vendor/lib64, /system/lib64]]] couldn't find "libaviary_moalite.so"

gredle.build 部分

dependencies {
    ...
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.facebook.fresco:fresco:0.8.1+'
    compile 'com.facebook.fresco:imagepipeline-okhttp:0.8.1+'
    compile 'com.android.support:appcompat-v7:22.2.1'
    compile 'com.adobe.creativesdk:image:4.0.0'
}

参考没用

使用 Android Studio (1.3 RC) 找不到 ARM64 NDK 本机库

如果使用任何使用的解决方案,则会出现同样的错误。

如何在 64 位 Android 设备上使用 32 位本机库

得到错误,如

Error:(16, 0) Error: NDK integration is deprecated in the current plugin.  Consider trying the new experimental plugin.  For details, see http://tools.android.com/tech-docs/new-build-system/gradle-experimental.  Set "android.useDeprecatedNdk=true" in gradle.properties to continue using the current NDK integration.

我不确定我做错了什么,或者根本不支持。

4

2 回答 2

20

看起来您使用的某些软件包带有 64 位库,但有些没有。为了保持您的 APK 仅 32 位,我使用

android {
    splits {
        abi {
            enable true
            reset()
            include 'armeabi-v7a'
        }
    }
}

你也可以玩include 'armeabi',如果它是相关的。

于 2015-11-25T23:23:44.597 回答
7

我通过以下步骤解决了这种情况:

  1. 我已将 armeabi 和 x86 文件夹从:\src\main\jniLibs 移动到:\libs

    请确保也移动这些文件夹下的所有文件:*.so 文件应该位于那里。

  2. 我在 build.gradle 中添加了以下内容:

    sourceSets.main {
      jniLibs.srcDir 'src/main/libs'
    }
    
  3. 清理 + 重建项目

    *如果您使用的是 multidex,请确认这些行已添加到 build.gradle:

    defaultConfig {
      multiDexEnabled true
    }
    
    dexOptions {
      preDexLibraries false
      javaMaxHeapSize "4g"
    }
    

此外,这应该添加到您的清单文件中:

<application
    android:name="android.support.multidex.MultiDexApplication">
/application>

希望这可以帮助。

于 2016-02-29T16:24:24.797 回答