「Android/広告組込/google/admob/メディエーション/nend」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==追加方法== 公式 https://developers.google.com/admob/android/mediation/nend build.gradle <pre> repositories { maven { url 'http://fan-adn.github.io/ne...」) |
|||
行14: | 行14: | ||
implementation 'com.google.ads.mediation:nend:5.2.0.0' | implementation 'com.google.ads.mediation:nend:5.2.0.0' | ||
} | } | ||
+ | </pre> | ||
+ | |||
+ | java | ||
+ | <pre> | ||
+ | import com.google.ads.mediation.nend.NendAdapter; | ||
+ | import com.google.ads.mediation.nend.NendExtrasBundleBuilder; | ||
+ | Bundle bundle = new NendAdapter.NendExtrasBundleBuilder().setUserId( | ||
+ | "userId").setInterstitialType(InterstitialType.TYPE_NORMAL).build(); | ||
+ | |||
+ | AdRequest adRequest = new AdRequest.Builder().addNetworkExtrasBundle( | ||
+ | NendAdapter.class, bundle).build(); | ||
+ | adLoader.loadAd(adRequest); | ||
</pre> | </pre> |
2020年1月29日 (水) 18:41時点における版
追加方法
公式 https://developers.google.com/admob/android/mediation/nend
build.gradle
repositories { maven { url 'http://fan-adn.github.io/nendSDK-Android-lib/library' } } dependencies { implementation 'com.google.android.gms:play-services-ads:18.3.0' implementation 'com.google.ads.mediation:nend:5.2.0.0' }
java
import com.google.ads.mediation.nend.NendAdapter; import com.google.ads.mediation.nend.NendExtrasBundleBuilder; Bundle bundle = new NendAdapter.NendExtrasBundleBuilder().setUserId( "userId").setInterstitialType(InterstitialType.TYPE_NORMAL).build(); AdRequest adRequest = new AdRequest.Builder().addNetworkExtrasBundle( NendAdapter.class, bundle).build(); adLoader.loadAd(adRequest);