What is the most recent correct syntax to initialize the Google Mobile Ads SDK in the App Delegate file?“Warning: iPhone apps should include an armv6 architecture” even with build config setWhat is the correct way to rebrand an iPhone app within a single xCode project?Slow iOS Simulator all of a sudden, toggle animations not fixing it - XcodeNo-break space causing problems in XcodeXcode deprecated warning not always appearsiTunes Connect - Error importing this buildSegmentation fault 11 fix?The are errors arising in iOS apps with move to iOS 10 from earlier (8 or 9) iOS versionsNetwork Error using Facebook's Swift SDKSwift 3 @objc interference issue not being fixed :-(

How creative should the DM let an artificer be in terms of what they can build?

I've been given a project I can't complete, what should I do?

Solving ‘Null geometry…’ error during distance matrix operation?

Is it possible to have 2 different but equal size real number sets that have the same mean and standard deviation?

variance of number of isolated vertices in random graph G(n,p)

Proving that a Russian cryptographic standard is too structured

Why is Na5 not played in this line of the French Defense, Advance Variation?

How can I spread content from an ancient text without governmental supervision?

Who is "He that flies" in Lord of the Rings?

How do i export activities related to an account with a specific recordtype?

How can I remove material from this wood beam?

How long is it safe to leave marker on a Chessex battle map?

Does putting salt first make it easier for attacker to bruteforce the hash?

How can one's career as a reviewer be ended?

Fermat's statement about the ancients: How serious was he?

Is there a DSLR/mirorless camera with minimal options like a classic, simple SLR?

Is the use of umgeben in the passive unusual?

Why did the World Bank set the global poverty line at $1.90?

Is using 'echo' to display attacker-controlled data on the terminal dangerous?

Can you make an identity from this product?

How do we say "within a kilometer radius spherically"?

Ability To Change Root User Password (Vulnerability?)

How to make the letter "K" that denote Krylov space

Electricity free spaceship



What is the most recent correct syntax to initialize the Google Mobile Ads SDK in the App Delegate file?


“Warning: iPhone apps should include an armv6 architecture” even with build config setWhat is the correct way to rebrand an iPhone app within a single xCode project?Slow iOS Simulator all of a sudden, toggle animations not fixing it - XcodeNo-break space causing problems in XcodeXcode deprecated warning not always appearsiTunes Connect - Error importing this buildSegmentation fault 11 fix?The are errors arising in iOS apps with move to iOS 10 from earlier (8 or 9) iOS versionsNetwork Error using Facebook's Swift SDKSwift 3 @objc interference issue not being fixed :-(






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








8















All of a sudden, I get a warning on the code used to initialize the Google Mobile Ads SDK. (It had been working for weeks before with no warning, but now it seems there's a new way to write the code.)



This is the code I have:



GADMobileAds.configure(withApplicationID: "ca-app-pub-################~##########")


But it gives me this warning: 'configure(withApplicationID:)' is deprecated: Use [GADMobileAds.sharedInstance startWithCompletionHandler:]



I've tried to rewrite it like this (with and without the square brackets):



GADMobileAds.sharedInstance startWithCompletionHandler: "ca-app-pub-################~##########"


But it just gives me an error that it expected a ;.



How should I write this? Thank you!



files from Pods folder in Xcode show a modified status










share|improve this question






















  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39

















8















All of a sudden, I get a warning on the code used to initialize the Google Mobile Ads SDK. (It had been working for weeks before with no warning, but now it seems there's a new way to write the code.)



This is the code I have:



GADMobileAds.configure(withApplicationID: "ca-app-pub-################~##########")


But it gives me this warning: 'configure(withApplicationID:)' is deprecated: Use [GADMobileAds.sharedInstance startWithCompletionHandler:]



I've tried to rewrite it like this (with and without the square brackets):



GADMobileAds.sharedInstance startWithCompletionHandler: "ca-app-pub-################~##########"


But it just gives me an error that it expected a ;.



How should I write this? Thank you!



files from Pods folder in Xcode show a modified status










share|improve this question






















  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39













8












8








8


1






All of a sudden, I get a warning on the code used to initialize the Google Mobile Ads SDK. (It had been working for weeks before with no warning, but now it seems there's a new way to write the code.)



This is the code I have:



GADMobileAds.configure(withApplicationID: "ca-app-pub-################~##########")


But it gives me this warning: 'configure(withApplicationID:)' is deprecated: Use [GADMobileAds.sharedInstance startWithCompletionHandler:]



I've tried to rewrite it like this (with and without the square brackets):



GADMobileAds.sharedInstance startWithCompletionHandler: "ca-app-pub-################~##########"


But it just gives me an error that it expected a ;.



How should I write this? Thank you!



files from Pods folder in Xcode show a modified status










share|improve this question














All of a sudden, I get a warning on the code used to initialize the Google Mobile Ads SDK. (It had been working for weeks before with no warning, but now it seems there's a new way to write the code.)



This is the code I have:



GADMobileAds.configure(withApplicationID: "ca-app-pub-################~##########")


But it gives me this warning: 'configure(withApplicationID:)' is deprecated: Use [GADMobileAds.sharedInstance startWithCompletionHandler:]



I've tried to rewrite it like this (with and without the square brackets):



GADMobileAds.sharedInstance startWithCompletionHandler: "ca-app-pub-################~##########"


But it just gives me an error that it expected a ;.



How should I write this? Thank you!



files from Pods folder in Xcode show a modified status







xcode swift4






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 20:35









DerenceDerence

738




738












  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39

















  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39
















do you know if we get consent before or after initializing SDK ?

– Julian
Apr 6 at 23:39





do you know if we get consent before or after initializing SDK ?

– Julian
Apr 6 at 23:39












1 Answer
1






active

oldest

votes


















11














1) Add the follow in Info.plist



<key>GADApplicationIdentifier</key>
<string>ca-app-pub-3940256099942544~1458002511</string>


2) in AppDelegate



 GADMobileAds.sharedInstance().start(completionHandler: nil)





share|improve this answer























  • Thank you, sir! That seems to have worked. (I put in my own ca-app-pub- number of course :D)

    – Derence
    Mar 25 at 21:31











  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39






  • 1





    I'm not sure what that means, but I later did find the source of Muhammad's knowledge: developers.google.com/admob/ios/quick-start Maybe the answer is on that page @izzyMachado?

    – Derence
    Apr 8 at 15:15











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55328311%2fwhat-is-the-most-recent-correct-syntax-to-initialize-the-google-mobile-ads-sdk-i%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









11














1) Add the follow in Info.plist



<key>GADApplicationIdentifier</key>
<string>ca-app-pub-3940256099942544~1458002511</string>


2) in AppDelegate



 GADMobileAds.sharedInstance().start(completionHandler: nil)





share|improve this answer























  • Thank you, sir! That seems to have worked. (I put in my own ca-app-pub- number of course :D)

    – Derence
    Mar 25 at 21:31











  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39






  • 1





    I'm not sure what that means, but I later did find the source of Muhammad's knowledge: developers.google.com/admob/ios/quick-start Maybe the answer is on that page @izzyMachado?

    – Derence
    Apr 8 at 15:15















11














1) Add the follow in Info.plist



<key>GADApplicationIdentifier</key>
<string>ca-app-pub-3940256099942544~1458002511</string>


2) in AppDelegate



 GADMobileAds.sharedInstance().start(completionHandler: nil)





share|improve this answer























  • Thank you, sir! That seems to have worked. (I put in my own ca-app-pub- number of course :D)

    – Derence
    Mar 25 at 21:31











  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39






  • 1





    I'm not sure what that means, but I later did find the source of Muhammad's knowledge: developers.google.com/admob/ios/quick-start Maybe the answer is on that page @izzyMachado?

    – Derence
    Apr 8 at 15:15













11












11








11







1) Add the follow in Info.plist



<key>GADApplicationIdentifier</key>
<string>ca-app-pub-3940256099942544~1458002511</string>


2) in AppDelegate



 GADMobileAds.sharedInstance().start(completionHandler: nil)





share|improve this answer













1) Add the follow in Info.plist



<key>GADApplicationIdentifier</key>
<string>ca-app-pub-3940256099942544~1458002511</string>


2) in AppDelegate



 GADMobileAds.sharedInstance().start(completionHandler: nil)






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 25 at 13:16









Muhammad ShahidMuhammad Shahid

12613




12613












  • Thank you, sir! That seems to have worked. (I put in my own ca-app-pub- number of course :D)

    – Derence
    Mar 25 at 21:31











  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39






  • 1





    I'm not sure what that means, but I later did find the source of Muhammad's knowledge: developers.google.com/admob/ios/quick-start Maybe the answer is on that page @izzyMachado?

    – Derence
    Apr 8 at 15:15

















  • Thank you, sir! That seems to have worked. (I put in my own ca-app-pub- number of course :D)

    – Derence
    Mar 25 at 21:31











  • do you know if we get consent before or after initializing SDK ?

    – Julian
    Apr 6 at 23:39






  • 1





    I'm not sure what that means, but I later did find the source of Muhammad's knowledge: developers.google.com/admob/ios/quick-start Maybe the answer is on that page @izzyMachado?

    – Derence
    Apr 8 at 15:15
















Thank you, sir! That seems to have worked. (I put in my own ca-app-pub- number of course :D)

– Derence
Mar 25 at 21:31





Thank you, sir! That seems to have worked. (I put in my own ca-app-pub- number of course :D)

– Derence
Mar 25 at 21:31













do you know if we get consent before or after initializing SDK ?

– Julian
Apr 6 at 23:39





do you know if we get consent before or after initializing SDK ?

– Julian
Apr 6 at 23:39




1




1





I'm not sure what that means, but I later did find the source of Muhammad's knowledge: developers.google.com/admob/ios/quick-start Maybe the answer is on that page @izzyMachado?

– Derence
Apr 8 at 15:15





I'm not sure what that means, but I later did find the source of Muhammad's knowledge: developers.google.com/admob/ios/quick-start Maybe the answer is on that page @izzyMachado?

– Derence
Apr 8 at 15:15



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55328311%2fwhat-is-the-most-recent-correct-syntax-to-initialize-the-google-mobile-ads-sdk-i%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript