我在使用 google play 时遇到问题,因为我有带插页式广告的 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();
}
}
}
任何想法?