dex не объединен для андроид студии.Прошло много ответов.Все еще не получить решение - PullRequest
0 голосов
/ 06 декабря 2018
apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.example.souravsaikia.chattingapp"
        minSdkVersion 23
        targetSdkVersion 26
        multiDexEnabled true

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

dependencies {
    compile 'com.android.support:multidex:1.0.3'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.google.firebase:firebase-auth:16.0.1'
    implementation 'com.google.firebase:firebase-database:16.0.1'
    implementation 'com.google.firebase:firebase-storage:16.0.1'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:design:26.1.0'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
    api 'com.theartofdev.edmodo:android-image-cropper:2.5.1'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.firebaseui:firebase-ui-database:4.2.1'
    implementation 'com.android.support:recyclerview-v7:26.1.0'
    compile 'com.google.android.gms:play-services-auth:16.0.1'

}


apply plugin: 'com.google.gms.google-services'

Это файл Gradle уровня приложения.Также вот код для уровня проекта gradle.

buildscript {

    repositories {
        apply plugin: 'announce'
        google()
        jcenter()
        maven {
            url "https://maven.google.com"
        }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
        classpath 'com.google.gms:google-services:3.1.0'
    }
}

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

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

Извините, что повторяю тот же вопрос.Но я прошел через большинство ответов здесь.Но так и не смог найти подходящего решения проблемы.Я застрял в этой проблеме в течение двух дней.Так что помощь будет принята.

Журнал ошибок: Ошибка: выполнение задачи не выполнено: app: transformDexArchiveWithExternalLibsDexMergerForDebug '.

java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: невозможно объединить dex

1 Ответ

0 голосов
/ 06 декабря 2018

Я изменил compileSdkVersion на 27 и targetSdkVersion на 27. Кроме того, appcompat, design и recyclerView зависят от 27.1.1.У меня это сработало.

...