首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >错误:程序类型已存在: android.support.design.widget.CoordinatorLayout$Behavior

错误:程序类型已存在: android.support.design.widget.CoordinatorLayout$Behavior
EN

Stack Overflow用户
提问于 2018-03-05 22:02:33
回答 22查看 189.3K关注 0票数 130

我在构建项目时遇到了以下错误。在这个项目中没有使用过CoordinatorLayout。刚刚添加为build.gradle中的依赖项:

我使用的是Android Studio 3.2 Canary 4。

LogCat

源代码:{"kind":"error",“text”:“程序类型已存在: android.support.design.widget.CoordinatorLayout$Behavior",”

“:{},"tool":"D8"} :app:transformDexArchiveWithExternalLibsDexMergerForDebug失败失败:生成失败并出现异常。*问题所在:任务':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.执行失败

合并dex存档时出现com.android.builder.dexing.DexArchiveMergerException:错误: /windows/Other/app/build/intermediates/transforms/dexBuilder/debug/0.jar,/windows/Other/app/build/intermediates/transforms/dexBuilder/debug/1.jar,/windows/Other/app/build/intermediates/transforms/dexBuilder/debug/4.jar,。。.

/windows/Other/app/build/intermediates/transforms/dexBuilder/debug/294.jar

程序类型已存在: android.support.design.widget.CoordinatorLayout$Behavior

build.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.3"
    defaultConfig {
        applicationId "com.dagkot"
        minSdkVersion 16
        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'
            buildConfigField "String", "BASE_URL", "\"http://api.openweathermap.org/data/2.5/\""
            buildConfigField "String", "API_KEY", "\"435e9075f348868c2714fe7c6895efa5\""
        }
        debug {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        buildConfigField "String", "BASE_URL", "\"http://api.openweathermap.org/data/2.5/\""
        buildConfigField "String", "API_KEY", "\"xxxx\""
    }
}
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:27.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"


    // Dagger dependencies
    compileOnly 'org.glassfish:javax.annotation:10.0-b28'
    implementation "com.google.dagger:dagger:$rootProject.daggerVersion"
    implementation "com.google.dagger:dagger-android:$rootProject.daggerVersion"
    implementation "com.google.dagger:dagger-android-support:$rootProject.daggerVersion"
    kapt "com.google.dagger:dagger-android-processor:$rootProject.daggerVersion"
    kapt "com.google.dagger:dagger-compiler:$rootProject.daggerVersion"

    //Butterknife dependencies
    implementation 'com.jakewharton:butterknife:8.8.1'
    kapt 'com.jakewharton:butterknife-compiler:8.8.1'

    // Architecture Components Dependencies
    kapt "android.arch.lifecycle:compiler:$rootProject.lifeCycle"
    implementation "android.arch.lifecycle:extensions:$rootProject.lifeCycle"
    implementation "android.arch.lifecycle:reactivestreams:$rootProject.lifeCycle"
    implementation "com.android.support:cardview-v7:$rootProject.supportLibraryVersion"

    // Retrofit/RxJava Dependencies
    implementation "com.squareup.retrofit2:retrofit:$rootProject.retrofitVersion"
    implementation "com.squareup.retrofit2:adapter-rxjava2:$rootProject.retrofitVersion"
    implementation "com.squareup.retrofit2:converter-gson:$rootProject.retrofitVersion"
    implementation "io.reactivex.rxjava2:rxandroid:$rootProject.rxAndroidVersion"
    implementation 'com.squareup.okhttp3:logging-interceptor:3.6.0'
    implementation 'com.jakewharton.rxbinding2:rxbinding-kotlin:2.1.1'

    // GSON
    implementation "com.google.code.gson:gson:$rootProject.gsonVersion"

    // Rx Location Manager
    implementation 'io.nlopez.smartlocation:library:3.3.3'
    implementation 'io.nlopez.smartlocation:rx:3.3.1'

    //Anko Dependencies
    implementation "org.jetbrains.anko:anko-commons:$rootProject.anko_version"
    implementation "org.jetbrains.anko:anko-design:$rootProject.anko_version"
    implementation 'com.android.support:design:27.0.2'

    implementation("com.github.hotchemi:permissionsdispatcher:3.1.0") {
        // if you don't use android.app.Fragment you can exclude support for them
        exclude module: "support-v13"
    }
    kapt "com.github.hotchemi:permissionsdispatcher-processor:3.1.0"
}
EN

回答 22

Stack Overflow用户

回答已采纳

发布于 2018-03-07 23:21:30

当我降级support appcompat gradle依赖项时,它起作用了,如下所示:

implementation 'com.android.support:appcompat-v7:27.0.2'

以前是这样的

implementation 'com.android.support:appcompat-v7:27.1.0'

此外,只需将版本27.1.0或更高版本的支持设计依赖项添加到应用程序级别的build.gradle中,即可修复此问题,如下所示:

implementation 'com.android.support:design:27.1.0'
票数 214
EN

Stack Overflow用户

发布于 2018-03-06 13:25:50

我遇到了同样的问题,我将android支持设计依赖添加到了应用程序级别的build.gradle中。

添加以下内容:

implementation 'com.android.support:design:27.1.0'

在build.gradle中。现在它对我起作用了。

票数 78
EN

Stack Overflow用户

发布于 2018-06-29 14:40:36

这可能是因为一个库,我面对它是因为Glide。

确实是

implementation 'com.github.bumptech.glide:glide:4.7.1'

所以我添加了exclude group: "com.android.support",它就变成了

implementation ('com.github.bumptech.glide:glide:4.7.1') {
        exclude group: "com.android.support"
    }
票数 32
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/49112190

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档