안드로이드 전면 광고
전면 광고 노출하기
val interstitialAd = AdropInterstitialAd(context, "YOUR_UNIT_ID")
interstitialAd.interstitialAdListener = object : AdropInterstitialAdListener {
override fun onAdReceived(ad: AdropInterstitialAd) {
Log.d("ADROP", "interstitial ad received ${ad.unitId}")
ad.show()
}
override fun onAdFailedToReceive(ad: AdropInterstitialAd, errorCode: AdropErrorCode) {
Log.d("ADROP", "failed to receive $errorCode")
}
override fun onAdFailedToShowFullScreen(ad: AdropInterstitialAd, errorCode: AdropErrorCode) {
Log.d("ADROP", "failed to show full screen $errorCode")
}
...
}
interstitialAd.load()
AdropInterstitialAd interstitialAd = new AdropInterstitialAd(context, "YOUR_UNIT_ID");
interstitialAd.setInterstitialAdListener(new AdropInterstitialAdListener() {
@Override
public void onAdReceived(@NotNull AdropInterstitialAd ad) {
Log.d("ADROP", "interstitial ad received " + ad.unitId);
ad.show();
}
@Override
public void onAdFailedToReceive(@NotNull AdropInterstitialAd ad, @NotNull AdropErrorCode errorCode) {
Log.d("ADROP", "failed to received " + errorCode);
}
@Override
public void onAdFailedToShowFullScreen(@NotNull AdropInterstitialAd ad, @NotNull AdropErrorCode errorCode) {
Log.d("ADROP", "failed to show full screen " + errorCode);
}
...
});
interstitialAd.load();
전면 광고 Destroy
AdropInterstitialAd 노출을 종료한다면, 네이티브 광고가 garbage collection 되도록 다음과 같이 destroy해야합니다.
interstitialAd.destroy()
interstitialAd.destroy();
Last updated