我刚刚将android studio升级到3.1.3,并创建了显示admob横幅广告的新项目,但是出现了此错误。
我在较新的版本[3.1.3]中打开了较旧的项目,虽然遇到了很多错误,但我还是通过在线搜索解决了。对于这个错误,我什么也找不到。
以下是来自build.gradle文件的依赖项
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
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.gms:play-services:12.0.1'
implementation 'com.google.android.gms:play-services-ads:15.0.1'
}
谢谢。
答案 0 :(得分:0)
已解决。 这是build.gradle中的问题,我对依赖项进行了小的更改
implementation "com.google.android.gms:play-services-gcm:15.0.1"
参考this答案
如果遇到此类问题,请检查依赖项及其版本。