当前位置: 首页 > 知识库问答 >
问题:

多个dex文件定义land roid/support/design/widget/coordinator layout $ 1;

双俊人
2023-03-14

每当我想运行我的项目时,我都会收到以下错误

错误:任务': app: transformClassesSusDexForDebug'执行失败。com.android.build.api.transform.TransformException:com.android.ide.common.process.ProcessException:java.util.concurrent.ExecutionException:com.android.dex.DexException:多个dex文件定义Landroid/support/design/widget/协调器Layout1美元;

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.2"
    defaultConfig {
        applicationId "com.example.invinciblesourav.flacom"
        minSdkVersion 18
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"    
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    sourceSets { main { assets.srcDirs = ['src/main/assets', 'src/main/assets/'] } }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    compile ('com.android.support:appcompat-v7:27.+')
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.google.firebase:firebase-auth:11.0.4'
    compile 'de.hdodenhof:circleimageview:2.1.0'
    compile 'com.theartofdev.edmodo:android-image-cropper:2.3.+'
    compile 'com.google.firebase:firebase-core:11.0.4'
    compile 'com.google.firebase:firebase-database:11.0.2'
    compile 'com.google.firebase:firebase-storage:11.0.4'
    compile 'com.android.support:design:25.3.1'
    compile 'com.squareup.picasso:picasso:2.4.0'
    testCompile 'junit:junit:4.12'
}


apply pluenter code heregin: 'com.google.gms.google-services'

请帮帮我,我在这个问题上困了几天。

共有3个答案

丌官远
2023-03-14

我的问题与使用同一库的不同版本有关。我的一个子依赖项指的是 com.android.support:design 的不同版本,所以我强制将版本放在 build.gradle 中

configurations.all {
    resolutionStrategy {
        force 'com.android.support:support-v4:27.1.0'
        force 'com.android.support:design:27.1.0'
    }
}
宰修能
2023-03-14

只是你必须添加多索引true并添加一个依赖项。检查码:

defaultConfig {
    ...
    multiDexEnabled true
}

添加依赖项:

dependencies {
 compile 'com.android.support:multidex:1.0.1'
}

如果你想了解更多的细节,请点击下面的链接:https://developer.android.com/studio/build/multidex.html

快乐编码...

范文昌
2023-03-14

我有完全相同的问题。我通过将每个Google支持库更新到最新版本(在编写此解决方案时为27.1.0)来解决此问题。此外,我还将编译SdkVersion 更新为版本 27,并将构建工具版本更新为版本 27.0.3。我希望这将解决你的问题。

 类似资料: