gpt4 book ai didi

java - 云 Firestore : DexArchiveMergerException Unable to merge dex

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:59:21 27 4
gpt4 key购买 nike

当我包括:

compile 'com.firebaseui:firebase-ui-firestore:3.1.0'

构建失败。 firestore 版本 3.0.0 是相同的结果。

没有这段代码,构建成功。

是否有重复的模块?请帮助我。

Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.

java.lang.RuntimeException: java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
defaultConfig {
applicationId "com.android"
minSdkVersion 16
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

// firebase
resConfigs "auto"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

// volley
compile 'com.android.volley:volley:1.0.0'

// firebase, map, location
implementation 'com.google.android.gms:play-services-maps:11.4.2'
implementation 'com.google.android.gms:play-services-location:11.4.2'

// firebase storage
compile 'com.google.firebase:firebase-storage:11.4.2'

// FirebaseUI for Firebase Auth
compile 'com.firebaseui:firebase-ui-auth:3.1.0'

// Required only if Facebook login support is required
compile 'com.facebook.android:facebook-login:4.27.0'

// Required only if Twitter login support is required
compile("com.twitter.sdk.android:twitter-core:3.0.0@aar") { transitive = true }

// glide
compile 'com.github.bumptech.glide:glide:4.3.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'

// FirebaseUI Storage
compile 'com.firebaseui:firebase-ui-storage:3.1.0'

// Firebase cloud message
compile 'com.google.firebase:firebase-messaging:11.4.2'

// FirebaseUI for Cloud Firestore
compile 'com.firebaseui:firebase-ui-firestore:3.1.0'
}

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

buildscript {

repositories {
google()
jcenter()

}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
//firebase
classpath 'com.google.gms:google-services:3.1.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()


// glide
mavenCentral()
maven { url 'https://maven.google.com' }

// firebase twitter login
maven { url 'https://maven.fabric.io/public' }

}
}

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

最佳答案

您的代码没有任何问题。几天前我遇到了同样的问题,我很简单地解决了这个问题:

1. Clean
2. Rebuild

不要忘记在您的 build.gradle 文件(模块:app)中包含以下代码行。

android {
defaultConfig {
multiDexEnabled true
}
}

如果它仍然无法按照上述说明工作,只需删除 .gradle 目录,然后再次运行您的应用

关于java - 云 Firestore : DexArchiveMergerException Unable to merge dex,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47300681/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com