質問編集履歴
1
コードの追記
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
AdMob広告が
|
1
|
+
AdMob広告が本番アプリで表示されない
|
test
CHANGED
@@ -1 +1,31 @@
|
|
1
1
|
swift開発のiOSアプリでadMobのリワード広告(動画広告)がシュミレーターでは表示されていたにも関わらず、実際にリリースしたアプリでは表示されません。IDも本番用で、個人情報も入力済みです。なぜ表示されないのでしょうか?
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
```swift
|
6
|
+
|
7
|
+
import GoogleMobileAds
|
8
|
+
|
9
|
+
class ViewController: UIViewController,GADRewardBasedVideoAdDelegate {
|
10
|
+
|
11
|
+
//...
|
12
|
+
|
13
|
+
func click(){
|
14
|
+
|
15
|
+
if GADRewardBasedVideoAd.sharedInstance().isReady == true {
|
16
|
+
|
17
|
+
GADRewardBasedVideoAd.sharedInstance().present(fromRootViewController: self)
|
18
|
+
|
19
|
+
//実機だとここにいって表示される
|
20
|
+
|
21
|
+
}else{//リリースしたアプリだとここにいく}
|
22
|
+
|
23
|
+
}
|
24
|
+
|
25
|
+
override func viewDidLoad() {
|
26
|
+
|
27
|
+
GADRewardBasedVideoAd.sharedInstance().delegate = self as! GADRewardBasedVideoAdDelegate
|
28
|
+
|
29
|
+
GADRewardBasedVideoAd.sharedInstance().load(GADRequest(),withAdUnitID: "ca-app-pub-1918692579240633/4625205793")
|
30
|
+
|
31
|
+
```
|