- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经将 Android Studio 更新到 3.4 和 Admob
库complie 'com.google.android.gms:play-services-ads:12.0.1'
到实现 'com.google.android.gms:play-services-ads:17.2.0'
之后,当我尝试运行应用程序时出现重复类错误。
我得到的错误
Duplicate class com.google.android.gms.common.api.internal.zza found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.api.internal.zzb found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.api.internal.zzc found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.api.internal.zzd found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.api.zza found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.api.zzb found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.internal.zzb found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.internal.zzr found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.internal.zzs found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Duplicate class com.google.android.gms.common.zze found in modules classes.jar (com.google.android.gms:play-services-base:12.0.1) and classes.jar (com.google.android.gms:play-services-basement:16.0.1)
Go to the documentation to learn how to Fix dependency resolution errors.
顶级gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath 'com.google.gms:google-services:4.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'io.fabric.tools:gradle:1.28.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
```
应用的gradle
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.27.1'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
android {
useLibrary 'org.apache.http.legacy'
compileSdkVersion 27
buildToolsVersion '28.0.3'
defaultConfig {
applicationId "xx.xxx"
minSdkVersion 15
targetSdkVersion 27
versionCode 23
versionName "1.23"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
manifestPlaceholders = [onesignal_app_id: "xxxx-xxx-xxx-xxx",
// Project number pulled from dashboard, local value is ignored.
onesignal_google_project_number: "REMOTE"]
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:recyclerview-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
// implementation 'com.google.android.gms:play-services-base:16.1.0'
//compile 'com.google.android.gms:play-services-gcm:12.0.1'
implementation 'com.google.android.gms:play-services-ads:17.2.0'
//compile 'com.google.android.gms:play-services-basement:16.0.1'
//compile 'com.google.android.gms:play-services-measurement-sdk-api:17.2.0'
implementation 'de.hdodenhof:circleimageview:3.0.0'
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'com.loopj.android:android-async-http:1.4.9'
implementation 'com.onesignal:OneSignal:3.10.8'
implementation 'com.android.support:multidex:1.0.3'
// retrofit, gson
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'org.droidparts:droidparts:3.2.5'
implementation 'org.jsoup:jsoup:1.11.3'
implementation('com.crashlytics.sdk.android:crashlytics:2.9.9@aar') {
transitive = true;
}
testImplementation 'junit:junit:4.12'
}```
最佳答案
请从这个link中查找最新的google's play service libraries| ,并相应地替换 gradle 文件中的正确版本。
在应用程序的“build.gradle”文件中,添加以下内容以及“android {...}”
configurations.all {
resolutionStrategy {
force 'com.google.android.gms:play-services-basement:17.1.0'
}
}
当时,最新的 google play services basement library 版本是 17.1.0。
希望这对您有所帮助。
关于java - 如何修复 "Duplicate class com.google.android.gms.common.api.internal.zza"错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56090289/
该应用程序运行良好,但在 LeakCanary 中,每次关闭或暂停应用程序时都会出现泄漏。 我也尝试删除 authListener 但泄漏仍然存在。 我试图以多种不同的方式解决,但没有成功,有人可以帮
这是我的 build.gradle 应用文件: dependencies { //picture library compile 'com.github.bumptech.glide:
在我的 build.gradle 中,我使用了这个: android { compileSdkVersion 23 .... .... defaultConfig {
package com.example.qpay.currentlocation; import android.Manifest; import android.app.AlertDialog; i
我正在尝试运行我的应用程序,但是在尝试运行我的应用程序时出现错误。 构建.gradle: dependencies { implementation fileTree(dir: 'libs', inc
嗨,我是 android 和 Flutter 的新手,我在 1 小时前遇到了这个错误,我不明白如何解决它,有人可以帮我吗?先感谢您。 这是安卓文件。 def localProperties = new
这些是我在 list 文件中的依赖项 implementation fileTree(dir: 'libs', include: ['*.jar']) implementation '
我目前在运行我的项目时遇到了一些问题。 duplicate entry: com/google/android/gms/internal/zzai$zza.class 错误是说我有一个重复的依赖项,但
此错误仅在 minifyEnabled true 时出现,因此我怀疑问题与 proguard 或 R8 有关” 错误 2019-08-22 18:26:05.320 8403-8403/com.xxx
首先:让我解释一下情况,我有一个 sdk 与 google Api 一起使用并实现了很多依赖项。然后我将 lib 实现到我的新应用程序中,它也实现了依赖项。一切顺利,直到我尝试运行该应用程序。 当我(
我一直在关注本教程 implementing google maps android sdk并达到标题中提到的错误。本问题末尾提供崩溃详细信息。我一直在关注很多 SO 线程,但没有结果。到目前为止,一
我已经遇到这个问题两天了,仍然没有找到任何解决方案。我尝试更改库的版本、清理和构建项目以及使缓存无效等。 下面是我的 build.gradle 文件: apply plugin: 'com.andro
构建项目并将应用程序部署到 API 级别 22 或 25 的模拟器没问题,但是当我尝试构建 APK 或将应用程序部署到 API 级别 16 的真实设备时,我收到以下错误: Error:Executio
我正在运行仪器测试并收到此编译错误: org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':app:tran
嗨,我正在尝试构建APK,但iam在Android Studio中面临此问题。 Error:Execution failed for task ':app:transformClassesWithJa
我已经将 Android Studio 更新到 3.4 和 Admob 库complie 'com.google.android.gms:play-services-ads:12.0.1' 到实现 '
我正在尝试在我的应用程序中实现 Firebase 云消息传递 (FCM)。我在 Build.gradle 中添加了以下依赖项并尝试构建发布构建变体。 compile 'com.google.fireb
错误: java.lang.NoSuchMethodError: No direct method (Landroid/content/Context;)V in class Lcom/google/
找不到从方法 com.google.android.gms.common.GooglePlayServicesUtil.zza 引用的类“android.app.AppOpsManager” 授权失败
当我尝试在 API 级别 22 之前的手机上运行该应用程序时,我收到此错误并且程序崩溃。但是该应用程序在 API 级别 22 的手机上运行正常。这可能是什么原因。 这是我的依赖: dependenci
我是一名优秀的程序员,十分优秀!