4

大家好,我在使用 android studio 生成签名 apk 时遇到一个问题。

我对此进行了很多搜索,但在我的情况下没有找到可行的解决方案,我知道这是与重复类条目相关的问题,但谁能告诉我我需要排除哪些。

我尝试关注事情,但这不起作用。

 {
    exclude group: 'com.payu.custombrowser', module: 'customBrowser'
 }

这是我在生成签名 apk 时遇到的错误

错误:任务“:transformClassesWithJarMergingForRelease”执行失败。

com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:com/payu/custombrowser/BuildConfig.class

以下是我的 build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"

useLibrary 'org.apache.http.legacy'

defaultConfig {
    applicationId "company.app.appname"
    minSdkVersion 9
    targetSdkVersion 23
    multiDexEnabled true

}

aaptOptions {
    useNewCruncher false
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        zipAlignEnabled true
    }
}
}

dependencies {

compile 'com.android.support:multidex:1.0.1'

compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':hellochartslibrary')
compile project(':customBrowser')
compile project(':facebook')


compile 'com.android.support:support-v4:23.3.0'
compile 'com.google.code.gson:gson:2.4'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.android.support:appcompat-v7:23.3.0'

我不知道我必须排除什么才能解决这个问题,有人知道请帮助我。

编辑注:

如果我直接运行该应用程序意味着没有生成签名的 apk 比它的工作正常没有错误日志但它只在我尝试生成签名的 apk 时显示

4

1 回答 1

1

您已经使用compileTree指令引用了那些 jar 文件,因此可能不需要所有这些compile files条目。

此外,compile 'com.google.android.gms:play-services:8.4.0'您还包括整个 Play 服务,这些服务的模块化版本可能有助于首先避免使用 MultiDex。

于 2016-04-16T10:09:06.113 回答