我正在制作一个应用,其中我必须检测GAID并显示admob广告。 当我尝试运行该应用程序时,它给了我这个错误
错误:程序类型已经存在:com.google.android.gms.common.api.zza
这是我的依赖项
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
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'
implementation 'com.google.android.material:material:1.1.0-alpha04'
implementation 'com.google.android.gms:play-services-ads:17.2.0'
implementation 'com.google.android.gms:play-services-auth:9.0.0'
}
我正在尝试检查播放服务是否可用,但出现错误。
任何帮助将不胜感激。
答案 0 :(得分:0)
当我将services-auth-9.0.0更新为services-auth-16.0.1版本时,它才起作用。