0

インタースティシャル付きの Google AdMob を使用しているため、Google Play で問題が発生しています。

このhttp://developer.android.com/google/play-services/id.html#get_startedを unity で実装する必要がありますが、その方法がわかりません。

追加をリクエストするコードは次のとおりです。

void Start () {     
    // Initialize an InterstitialAd.
    interstitial = new InterstitialAd("ca-app-pub-2682144290513842/3941226367");
    // Create an empty ad request.
    request = new AdRequest.Builder().Build();
    // Load the interstitial with the request.
    interstitial.LoadAd(request);
}

void showAdd(){
    if(Random.Range(0,5)>3){
        if (interstitial.IsLoaded()) {
            interstitial.Show();
        }
    }
}

何か案が?

4

0 に答える 0