这是错误:
AGPBI: {"kind":"error","text":"程序类型已经存在:android.support.customtabs.ICustomTabsCallback","sources":[{}],"tool":"D8"} :app: transformDexArchiveWithExternalLibsDexMergerForDebug 失败
FAILURE:构建失败并出现异常。
- 出了什么问题:任务“:app:transformDexArchiveWithExternalLibsDexMergerForDebug”执行失败。
com.android.builder.dexing.DexArchiveMergerException: Error while merging dex archives: D:\ANDROID\project\app\build\intermediates\transforms\dexBuilder\debug\0.jar,在https://了解如何解决问题developer.android.com/studio/build/dependencies#duplicate_classes。程序类型已存在:android.support.customtabs.ICustomTabsCallback
这是我的应用程序上的内容:
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion '28.0.3'`
defaultConfig {
multiDexEnabled true
applicationId "com.project.app"
minSdkVersion 16
targetSdkVersion 29
versionCode 6
versionName "1.5"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
useLibrary 'org.apache.http.legacy'
}
repositories{
maven {
url "http://dl.bintray.com/teads/TeadsSDK-android"
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support:design:27.1.0'
implementation 'com.android.support:cardview-v7:26.0.1'
implementation 'com.android.support:recyclerview-v7:26.0.1'
implementation 'com.google.android:flexbox:1.1.0'
implementation 'com.flurry.android:analytics:11.4.0@aar'
//implementation 'com.flurry.android:analytics:8.2.0@aar'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.github.bumptech.glide:glide:3.8.0'
implementation 'com.googlecode.json-simple:json-simple:1.1'
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'com.google.android.gms:play-services-ads:18.3.0'
//implementation 'com.google.android.gms:play-services-ads:18.3.0'
implementation 'com.facebook.android:facebook-android-sdk:[4,5)'
// Required dependency
implementation 'com.google.android.gms:play-services-basement:12.0.1'
// Teads SDK
/*implementation ('tv.teads.sdk:androidsdk:2.5.12:fullRelease@aar') {
transitive = true;
}*/
// Teads SDK
implementation("tv.teads.sdk.android:sdk:4.3.4@aar") {
transitive = true
}
// Teads Admob Adapter
implementation 'tv.teads.sdk.android:admobadapter:4.1.1'
implementation 'org.apmem.tools:layouts:1.10@aar'
}
你能帮助我吗 ?我的应用程序有什么问题。它同步成功,但是当我构建它时,出现错误。我应该怎么办?感谢提前。