com.android.dex.DexException: несколько файлов dex определяют Lcom/google/firebase/messaging/FirebaseMessaging

Прочитав несколько статей, я до сих пор не могу разобраться, что конкретно происходит для меня, чтобы получить эту ошибку при сборке.

"Причина: com.android.dex.DexException: Несколько файлов dex определяют Lcom/google/firebase/messaging/FirebaseMessaging;, sources=[Неизвестный исходный файл], исходное сообщение = НЕОЖИДАННОЕ ИСКЛЮЧЕНИЕ ВЕРХНЕГО УРОВНЯ: "

Мой build.gradle гласит:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "25.0.2"
    useLibrary 'org.apache.http.legacy'

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion 19
        applicationId "uk.co.quickdoc.mobileleaks"  // this is the id that your app has

    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
}

dependencies {
    compile 'com.android.support:support-v4:23.4.0'
    compile files('libs/classes.jar')
    compile 'com.android.support:design:23.2.0'
}

dependencies {
    compile 'com.google.firebase:firebase-core:11.0.4'
    compile 'com.google.firebase:firebase-messaging:11.0.4'


    compile 'org.apache.httpcomponents:httpcore:4.4.1'
    compile 'org.apache.httpcomponents:httpclient:4.5'


}
dependencies {
    compile 'com.google.android.gms:play-services-ads:11.0.4'
}

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

Какие-нибудь мысли?

0 ответов

Другие вопросы по тегам