使用gradle异常将iText 5.5.6添加到Android项目

时间:2015-07-30 09:16:29

标签: java android itext

我正在尝试使用Android Studio(gradle)将iTextPDF库添加到Android项目中。我使用编译'com.itextpdf:itextpdf:5.5.6'指令添加库但我收到错误:

  

错误:任务':app:dexDebug'的执行失败。   com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令'/opt/jdk1.7.0_79/bin/java''以非零退出值2结束

我的build.gradle是:

apply plugin: 'com.android.application'

android {
 compileSdkVersion 22
 buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "josealopez.com.software"
    minSdkVersion 14
    targetSdkVersion 22
    versionCode 104
    versionName "1.0.4"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
packagingOptions {
    exclude 'META-INF/ASL2.0'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/NOTICE'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.couchbase.lite:couchbase-lite-android:1.0.4'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.google.android.gms:play-services:7.0.0'
compile 'com.itextpdf:itextpdf:5.5.6'
}

4 个答案:

答案 0 :(得分:2)

我将这两个依赖项放在gradle中:

compile 'com.itextpdf:itext-pdfa:5.5.10'
compile 'com.itextpdf:itextg:5.5.9'

答案 1 :(得分:2)

使用这些依赖项:

compile 'com.itextpdf:itext-pdfa:5.5.10'
compile 'com.itextpdf:itextg:5.5.10'
compile group: 'com.itextpdf.tool', name: 'xmlworker', version: '5.5.10'

答案 2 :(得分:1)

我有这个问题试试5.5.10它对我有用

compile 'com.itextpdf:itextg:5.5.10'

答案 3 :(得分:0)

您可能已达到56k方法限制。这种情况经常发生在使用巨大的Google Play服务时,并且包含许多您可能不需要的方法。

不要在Gradle文件中使用行compile 'com.google.android.gms:play-services:7.0.0',而只需使用播放服务库中所需的各个模块。

e.g。 compile 'com.google.android.gms:play-services-location:7.0.0'只使用位置服务。

完整列表为here