Невозможно объединить ошибку dex после добавления библиотеки - PullRequest
0 голосов
/ 27 апреля 2019

Я пытался добавить библиотеку дизайна, но каждый раз, когда я делаю это, у меня не получается объединить ошибку dex

Я пытался использовать разные версии SDK и другие версии дизайна, но, похоже, он не работает

Вот изображение ошибки: enter image description here

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:26.0.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation 'com.android.support:support-v4:26.0.1'
    compile 'com.android.support:design:26.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.github.clans:fab:1.6.4'
    implementation 'com.github.bumptech.glide:glide:4.8.0'
    implementation 'com.theartofdev.edmodo:android-image-cropper:2.6.0'
    implementation 'de.hdodenhof:circleimageview:2.2.0'
    implementation 'com.rengwuxian.materialedittext:library:2.1.4'
    implementation 'com.android.support:recyclerview-v7:26.0.1'
    implementation 'id.zelory:compressor:2.0.0'
    implementation 'com.astuetz:pagerslidingtabstrip:1.0.1'
    compile 'com.github.javiersantos:BottomDialogs:1.2.1'
    compile 'com.github.mancj:SlideUp-Android:1.0-beta'
    compile 'com.github.zcweng:switch-button:0.0.3@aar'

    compile 'com.firebaseui:firebase-ui-database:0.4.1'
    implementation 'com.google.firebase:firebase-database:11.8.0'
    implementation 'com.google.firebase:firebase-auth:11.8.0'
    implementation 'com.google.firebase:firebase-core:11.8.0'
    implementation 'com.google.firebase:firebase-storage:11.8.0'

 }

Извините за такие беспорядочные зависимости, но я пытался все исправить, но ничего, потому что мне нужна библиотека дизайна

1 Ответ

0 голосов
/ 27 апреля 2019

У меня возникла та же проблема, и я нашел документы , которые мне подходят.

Добавьте некоторые настройки в app / build.gradle:

android {
    defaultConfig {
        ...
        multiDexEnabled true
    }
    ...
}

dependencies {
  compile 'com.android.support:multidex:1.0.3'
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...