Admob 原生广告问题
Admob Native Ad Issue
我想在我的项目中使用 Google Ads Samples 实现原生广告,但出现错误:
The Google Mobile Ads SDK will not integrate with Firebase. Admob/Firebase integration requires the latest Firebase SDK jar, but Firebase SDK is either missing or out of date
我不想为此项目设置 firebase,因此请自行导入 Google Mobile Ads SDK。
应用build.gradle
:
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion '29.0.2'
defaultConfig {
applicationId "appId"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0.0"
return void
}
buildTypes {
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
return void
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.gms:play-services-ads:19.0.1'
}
我在应用程序中初始化了 admob class:
MobileAds.initialize(this, getString(R.string.admob_app_id));
我检查了带有测试单元广告的 BannerAd,它加载并显示 perfectly.But activity 包含原生广告单元崩溃。
有什么建议吗?
问题出在模拟器上。
当我提交我的问题时,我只在 emulator.The 上测试了应用程序,在 运行 应用程序真实 device.I 之后错误消失了,但似乎 Google 服务在模拟器上需要更新。
我想在我的项目中使用 Google Ads Samples 实现原生广告,但出现错误:
The Google Mobile Ads SDK will not integrate with Firebase. Admob/Firebase integration requires the latest Firebase SDK jar, but Firebase SDK is either missing or out of date
我不想为此项目设置 firebase,因此请自行导入 Google Mobile Ads SDK。
应用build.gradle
:
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion '29.0.2'
defaultConfig {
applicationId "appId"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "1.0.0"
return void
}
buildTypes {
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
return void
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.gms:play-services-ads:19.0.1'
}
我在应用程序中初始化了 admob class:
MobileAds.initialize(this, getString(R.string.admob_app_id));
我检查了带有测试单元广告的 BannerAd,它加载并显示 perfectly.But activity 包含原生广告单元崩溃。
有什么建议吗?
问题出在模拟器上。 当我提交我的问题时,我只在 emulator.The 上测试了应用程序,在 运行 应用程序真实 device.I 之后错误消失了,但似乎 Google 服务在模拟器上需要更新。