gpt4 book ai didi

android - Android 中 Google AdMobs 和 Firebase 分析的多 Dex 问题

转载 作者:搜寻专家 更新时间:2023-11-01 09:22:39 26 4
gpt4 key购买 nike

我正在开发 Android 应用程序,我正在其中集成 Firebase Analytics 和 Google AdMobs。如果我同时使用两者,我会遇到 Multi Dex 问题,如果我不使用其他一个 Gradle 链接,则两者都可以独立工作。我在这个平台上使用了很多可用的解决方案,但对我来说没有任何用处。

我将我的 Gradle 文件与我在编译时遇到的错误放在一起。

应用级 Gradle:

buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}

dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

repositories {
maven { url 'https://maven.fabric.io/public' }
}


android {
compileSdkVersion 28
defaultConfig {
applicationId "fxxxxxipes"
minSdkVersion 21
multiDexEnabled true
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
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:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
implementation 'com.android.support:cardview-v7:28.0.0'
compile 'com.parse:parse-android:1.16.3'
compile 'com.parse.bolts:bolts-android:1.4.0'
compile project(':simplecropimagelib_')
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.makeramen:roundedimageview:2.3.0'
compile 'cn.ziyeyouhu.android:sweet-alert-dialog:1.0'
compile 'com.karumi:dexter:4.1.0'

implementation 'com.android.support:design:28.0.0'
compile 'com.parse:parsefacebookutils-v4-android:1.10.4@aar'
compile 'com.facebook.android:facebook-android-sdk:4.29.0'
compile fileTree(include: 'ParseFacebookUtilsV4-*.jar', dir: 'libs')
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:multidex:1.0.1'
compile 'com.mikhaellopez:circularimageview:3.0.2'
compile('com.crashlytics.sdk.android:crashlytics:2.9.6@aar') {
transitive = true;
}

implementation 'com.google.android.gms:play-services-ads:17.1.1'
implementation 'com.google.firebase:firebase-core:16.0.4'

}

项目级 Gradle 文件:

buildscript {

repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.google.gms:google-services:4.2.0'

}
}


allprojects {
repositories {
// google()
maven {
url "https://maven.google.com"
}
jcenter()
}
}

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

我在控制台上遇到的错误:

Error:Execution failed for task ':app:transformDexArchiveWithExternalLibsDexMergerForDebug'.
> java.lang.RuntimeException: com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex

我目前正在使用的解决方案来解决这个问题,但仍然会出现错误,我在我的应用程序类中使用它:

MultiDex.install(this);

最佳答案

对我来说,

multiDex 问题始终是版本冲突问题。所以在我看来,不需要安装 MultiDex 并尽量保持每个 gradles 的相同版本。

关于android - Android 中 Google AdMobs 和 Firebase 分析的多 Dex 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53458785/

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