使用广告ID

时间:2015-04-23 14:58:01

标签: android unity3d admob google-advertising-id

我在谷歌播放时遇到了问题,因为我有插页式广告的google admob。

我必须统一实施这个http://developer.android.com/google/play-services/id.html#get_started,但我不知道该怎么做。

这是我的代码,我请求添加:

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();
        }
    }
}

有什么想法吗?

0 个答案:

没有答案