Android在某处生成签名的APK错误

时间:2017-06-03 13:17:23

标签: java android gradle apk

这是一个问题。当我尝试生成已签名的APK时,每次都会出现此错误

  

错误:任务':app:transformClassesWithJarMergingForRelease'的执行失败。   com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com / sun / activation / registries / LineTokenizer.class

这是我使用的gradle

apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
    applicationId "com.example.lodka.lodkanadejeapp"
    minSdkVersion 15
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner        "android.support.test.runner.AndroidJUnitRunner"
    multiDexEnabled true
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {

compile ('com.parse:parse-android:1.12.0'){
    exclude group: 'com.parse.bolts', module: 'bolts-tasks';
}
compile files('libs/activation.jar')
compile files('libs/additionnal.jar')
compile files('libs/mail.jar')
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.google.android.gms:play-services-maps:10.2.4'
compile 'com.google.android.gms:play-services-location:10.2.4'
compile 'javax.mail:mail:1.4.5'
testCompile 'junit:junit:4.12'
}

你能告诉我一个错误吗?你完成了一个应用程序的制作并且无法生成应用程序是令人沮丧的:/

谢谢:)

0 个答案:

没有答案