Android/広告組込/google/admob/メディエーション/nend
追加方法
公式 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);