如何在Gradle中使用外部依赖项创建Java库?

时间:2016-04-09 01:58:32

标签: java android android-studio gradle

我已经在Android Studio的Gradle的依赖项上挣扎了4天以上。

我试图创建一个需要一些外部依赖项的java库(MyLibrary),即commons-codec。我在build.gradle中添加了它,看起来像这样。

    apply plugin: 'com.android.library'

    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.3"
        useLibrary 'org.apache.http.legacy'

        defaultConfig {
            minSdkVersion 21
            targetSdkVersion 23
            versionCode 1
            versionName "1.0"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
        lintOptions {
            abortOnError false
        }
    }

    dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        testCompile 'junit:junit:4.12'
        compile 'com.android.support:appcompat-v7:23.3.0'
        compile 'com.google.android.gms:play-services:8.4.0'
        compile 'commons-codec:commons-codec:1.10'
    }

我能够在Android Studio中组装我的调试和发布AAR文件。现在,在我的Android项目中,我通过将其作为AAR模块导入来添加MyLibrary,并为我的项目设置build.gradle文件,如下所示:

    apply plugin: 'com.android.application'

    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.3"

    //    useLibrary 'org.apache.http.legacy'

        defaultConfig {
            applicationId "com.my.package"
            minSdkVersion 21
            targetSdkVersion 23
            versionCode 1
            versionName "1.0"
            multiDexEnabled true
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    }

    repositories {
        mavenCentral()
        flatDir {
            dirs 'libs'
        }
    }

    dependencies {
        compile fileTree(include: ['*.jar'], dir: 'libs')
        testCompile 'junit:junit:4.12'
        compile 'com.android.support:appcompat-v7:23.2.0'
        compile 'com.google.android.gms:play-services:7.8.+'
        compile 'org.jbundle.util.osgi.wrapped:org.jbundle.util.osgi.wrapped.org.apache.http.client:4.1.2'
        compile 'commons-codec:commons-codec:1.10'
        compile project(':MyLibrary')
    }

项目构建和安装的应用程序,但在执行使用common-codec的代码部分时崩溃。

FATAL EXCEPTION: Thread-172468 java.lang.NoSuchMethodError: No static method encodeHexString([B)Ljava/lang/String; in class Lorg/apache/commons/codec/binary/Hex; or its super classes (declaration of 'org.apache.commons.codec.binary.Hex' appears in /system/framework/ext.jar) at org.apache.commons.codec.digest.DigestUtils.sha256Hex

我的问题是,为什么普通编解码器不包含在MyLibrary中?

由于

1 个答案:

答案 0 :(得分:0)

我认为你正在解释错误。这是NoSuchMethodException而不是ClassNotFoundException。前者意味着找到了类(在类路径的某个地方),它只是没有一个方法,其签名与您要调用的内容相匹配。

因此,运行时类路径上必须有不同的(即较旧的)commons-codec版本。

在谷歌搜索错误后,我发现这是一个有点常见的问题与android和commons-codec,因为显然android框架捆绑了自己的版本。有关详细信息和可能的解决方案,请参阅此问题:Method not found using DigestUtils in Android