From db0227b91b22707259e70004396b03458b2a95f8 Mon Sep 17 00:00:00 2001 From: MrLesAubrey <hello@mrles.co.uk> Date: Tue, 18 Jun 2019 18:25:50 +0100 Subject: [PATCH] Update ios.md --- docs/admob/ios.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/admob/ios.md b/docs/admob/ios.md index 79ed78e5..23fb3124 100644 --- a/docs/admob/ios.md +++ b/docs/admob/ios.md @@ -22,3 +22,10 @@ It should look like this, but with your ID, not the sample ID used below: <key>GADApplicationIdentifier</key> <string>ca-app-pub-3940256099942544~1458002511</string> ``` + +As of Google Mobile Ads SDK version 7.42.0 you will also need to declare that your app is an Ad Manager app by adding the GADIsAdManagerApp key with a boolean value YES. Failure to add add this results in a crash with the message: "The Google Mobile Ads SDK was initialized incorrectly." + +```xml + <key>GADIsAdManagerApp</key> + <true/> +```