将android studio更新为3.0.1版本后出错

时间:2017-12-01 05:40:31

标签: java android firebase

我将android studio升级到3.0.1版。每当我尝试启动我的应用程序时,gradle构建失败并给出以下错误:

  

错误:任务执行失败   ':应用程序:transformDexArchiveWithExternalLibsDexMergerForDebug'

     
    

java.lang.RuntimeException:java.lang.RuntimeException:com.android.builder.dexing.DexArchiveMergerException:无法合并     DEX

  

我尝试了堆栈溢出中提到的每个解决方案,但没有任何东西可以帮助我。

- 每当我清理项目时都不会发生错误,但是当我重建项目时,错误会再次出现。

- 我删除了.gradle文件和构建文件

- 我从编译变为实现

-I从10.2.1升级到11.4.2用于firebase依赖关系,但它给了我更多错误,例如无法解析依赖

-I启用了dex,但又出现了更多错误。

- 我启用了版本为46的Google Play服务

我搜索了可能但是我无法解决这个问题。 因为我的所有工作都被困住了,请帮助我。 任何帮助表示赞赏!

的build.gradle(项目)

buildscript {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
        }}
 dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:3.0.0'
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

的build.gradle(模块)

apply plugin: 'com.android.application'
android {
    compileSdkVersion 24
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "studentapp.notefi"
        minSdkVersion 17

        targetSdkVersion 24
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

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

 implementation 'com.android.support:appcompat-v7:24.1.1'
    implementation 'com.android.support:design:24.1.1'
    implementation 'com.android.support:support-v4:24.1.1'
    implementation 'com.android.support:recyclerview-v7:24.1.1'
    implementation 'com.android.support:cardview-v7:24.1.1'
    implementation 'com.google.firebase:firebase-messaging:10.2.1'
    implementation 'com.google.firebase:firebase-database:10.2.1'
    implementation 'com.google.firebase:firebase-storage:10.2.1'
    implementation 'com.google.firebase:firebase-auth:10.2.1'
    implementation 'com.firebaseui:firebase-ui-database:0.4.0'
    implementation 'com.github.barteksc:android-pdf-viewer:2.7.0'
    implementation 'org.apache.commons:commons-io:1.3.2'
    implementation 'com.google.firebase:firebase-crash:10.2.1'
    implementation 'com.theartofdev.edmodo:android-image-cropper:2.4.6'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.android.volley:volley:1.0.0'
    implementation 'com.squareup.okhttp3:okhttp:3.2.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'

1 个答案:

答案 0 :(得分:0)

请删除此行:

  task clean(type: Delete) {
delete rootProject.buildDir
}

休息我检查了它的工作正常,我的意思是它成功构建。

<强>编辑:

使用此代码&#34; com.google.android.gms:play-services:11.4.0&#34;而不是&#34; com.google.gms.google-services&#34;。然后清理并重建