我正在使用FirebaseUI尝试使用RecyclerViewAdapter。当我尝试运行应用程序时,gradle构建不会成功,并出现以下错误: Errors shown by Gradle
当我删除FirebaseUI依赖项时,不会发生这种情况。
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.firebaseui:firebase-ui-database:4.1.0'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
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'}
编辑:我添加了Android Developers Site
中提到的MultiDex支持我该怎么做才能使构建成功并运行该应用程序。
谢谢。