如何在Android中修复transformDexArchiveWithExternalLibsDexMergerForDebug

时间:2018-01-07 17:53:41

标签: java android android-multidex

在我的应用程序中,我想使用compile 'com.google.android.gms:play-services-gcm:10.2.1'
但在运行应用程序时,在 Logcat:

中显示此错误
Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
> java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

我在此代码中添加了 multiDexSupport ,但没有工作,并再次向我显示此错误!

multiDex的代码:

//Build.gradle
defaultConfig {
    applicationId "com.tellfa.colony"
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 12
    versionName "22"
    vectorDrawables.useSupportLibrary = true
    multiDexEnabled true
}

// MultiDex
compile 'com.android.support:multidex:1.0.2'

//Application class
@Override
protected void attachBaseContext(Context context) {
    super.attachBaseContext(context);
    MultiDex.install(this);
}

我该如何解决?请帮帮我

0 个答案:

没有答案