IOS google admob测试设备和App Store提交

时间:2015-05-30 09:50:10

标签: ios admob

我使用google admob并显示像这样的全屏广告..

GADInterstitial *interstitial = [[GADInterstitial alloc] initWithAdUnitID:@"ca-app-pub-798660655353089081/4370438050"]; //as an example
interstitial.delegate = self;

GADRequest *request = [GADRequest request];
request.testDevices = @[@"241ac0dsdf2c212ea860b2d9b77cf69d92" ]; //as an example
[interstitial loadRequest:request];
return interstitial;

为了展示,我表现得像这样。

if ([self.interstitial isReady]) 
{
       [self.interstitial presentFromRootViewController:self];
}

问题是当苹果测试我的应用时,他们看不到广告。我也不知道他们的UDID在他们的设备上显示广告。结果,他们拒绝我的应用程序,并说我的应用程序没有任何广告。我该怎么做?有什么方法可以在其他设备上显示广告吗?

0 个答案:

没有答案