我正在使用Google AdMob SDK来显示DFP广告管理系统横幅广告,但它仅适用于Android< 6.0。
在6.0以上的设备上,我收到了这个错误:
W/Ads: There was a problem getting an ad response. ErrorCode: 0
W/Ads: Failed to load ad: 0
即使Google提供的示例项目,我也会遇到完全相同的错误消息。
https://github.com/googleads/googleads-mobile-android-examples/tree/master/doubleclick/BannerExample
有什么想法吗?
更新
这是我的gradle.build
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.1"
defaultConfig {
applicationId "com.google.android.gms.example.bannerexample"
minSdkVersion 9
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.google.android.gms:play-services-ads:10.0.1'
}
答案 0 :(得分:0)
最后,我解决了这个问题,只需删除所有Play服务更新,然后将其恢复为9.4.0
,然后一切正常。
我也尝试将Play服务升级回10.0.84
,问题就此消失了,不知道原因,但确实解决了问题。