Android/広告組込/google/admob/基本
提供: 初心者エンジニアの簡易メモ
ポリシー違反警告
以下のようなポリシー違反警告がくる場合
This email is to alert you that your app is currently in violation of the AdMob program policies. Importantly, this will require action on your part to ensure no disruption in ad serving. Please read below for more information on the actions you need to take. View in policy center
自分のアプリの場合は、バナー広告の上にリワード広告が被っていたので、修正した。
問題なければ以下のようなメッセージが来る
Regarding your Google AdMob Policy Violation Review We’ve completed reviewing your app and no policy violations were found.
テストデバイスID
広告表示時に以下ログが出るので、そこに記載のidを入れる。
RequestConfiguration.Builder().setTestDeviceIds(Arrays.asList("E36A38A1F26D812D88FB97BF7D071234")
もしくは、以下を入れると良いかも。
String androidId = Settings.Secure.getString(this.getContentResolver(), Settings.Secure.ANDROID_ID); Log.i(TAG, "testDeviceId=" + md5(androidId).toUpperCase()); // E36A38A1F26D812D88FB97BF7D71234
md5のロジックは Android/hash/md5 [ショートカット]
生成したidとコンソールに出るtestDeviceIdは、一致したので使える。
androidの最小APIについて
admobプラグインのminimumについて 2020‑03‑02からでてるv.19.0.0 でAPI 16となる。
https://developers.google.com/admob/android/rel-notes
This release is a MAJOR version update with the following breaking changes: Updated minimum Android SDK version to API 16 to align with the Google Play services distribution policy. Native Ads: Moved MediaContent to the com.google.android.gms.ads package.
google-play-servicesについても2018/12/6にはAPI14,15について更新が停止されてます。 https://android-developers.googleblog.com/2018/12/google-play-services-discontinuing.html
他アドネットワークも最小APIは16 https://developers.google.com/admob/unity/mediate?hl=ja
nend 16 tapjoy 16 unityads 16 vungle 16 AdColony 16 AppLovin 16 facdbook 16 ironsource 16 maio 16 mopub 16
onAdFailedToLoadが19.0.0から非推奨へ
修正前
mAdView.setAdListener(new AdListener() { @Override public void onAdFailedToLoad(int errorCode) { // Code to be executed when an ad request fails. } }
修正後
mAdView.setAdListener(new AdListener() { @Override public void onAdFailedToLoad(LoadAdError adError) { // Code to be executed when an ad request fails. } }