具有依赖关系的Android库

时间:2017-08-15 20:27:27

标签: android android-library

我为需要Gson运行的项目构建了一个SDK,以便从后端序列化和反序列化复杂的请求和响应。当我在测试应用程序中将我的库添加为AAR文件时,我在尝试运行时遇到此错误:java.lang.NoClassDefFoundError: Failed resolution of: Lcom/google/gson/Gson.如果我向测试应用程序添加Gson依赖项,它就会消失。我的库gradle文件看起来像:

apply plugin: 'com.android.library'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"

    defaultConfig {
        minSdkVersion 19
        targetSdkVersion 26
        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.google.code.gson:gson:2.8.0'
}

但似乎只是把依赖性放在了不足之处。我需要在我的库中做些什么才能使我的sdk的其他用户不必将其添加为附加依赖项?

0 个答案:

没有答案