Keep Getting Error Messages When Compiling Newest Version of Admob on iOS6 Sdk

Keep getting error messages when compiling newest version of admob on IOS6 SDK

You probably didn't add AdSupport.framework. Also remember to remove -all_load linker flag.

Getting error _OBJC_CLASS_$_AdMobView while compiling in iPhone SDK 4

From your AdMob account you will get the latest version of AdMob.

Why I am getting this message IAB TCF v2.0 errors detected, Error 3.3 to my AdMob account?

according to that Google group if you are using UMP SDK, and you probably are as you're using Funding Choices like me, it should be handled by the SDK itself. So nothing to worry about, if the error persist, meaning it present itself in several different days, than I fear the only way is to open a ticket with Google Admob.

Xcode5 Google Admob sdk linker command failed with exit code 1

I was missing the Storekit.framework. It is documented and I am an imbecile.

https://developers.google.com/mobile-ads-sdk/docs/

How to upgrade Google Mobile Ads SDK in Xcode when I get this msg: Google:HTML You are currently using version 7.6.0 of the SDK?

It depends on how you have imported the GoogleSDK in your project.

1) If you have used the .pod file then you just need to update the pods.

2) If you have imported manually, then just replace the current SDK folder with a new downloaded one.

That's it!

Upgrading Google Mobile Ads iOS SDK from 5.0.5 to 6.4.2 results in linker errors

Maybe you need the -all_load linker flag option too? According to this article it's obsolete for newer ARM7 targets, but perhaps you have an old target?

http://vntin.com/feeds.feedburner.com/blogspot/LTiVe

See under this section: "Support for armv7s"

"If you’re targeting the armv7s architecture, you will not need to add the -all_load linker flag to your projects anymore. "

[Update]

You can try to verify what's in the lib*.a file by using the nm command.

nm -U libGoogleAdMobAds.a  | grep kGADAdSizeBanner

Also, clicking on the Log Navigator may provide some additional information. Select the last icon then your last build in the left nav.

Sample Image

[Update 2]

Someone on this site also complained about a linker problem with the new API. Might have to make small changes to your code.

http://www.monkeycoder.co.nz/Community/posts.php?topic=1246


Something has changed in the latest AdMob SDK. I get the same linker error. I can use an older version of the SDK and this all works fine. Anyone know what could have changed with Ad sizes?

EDIT: Found the problem. There were some name changes to constants :)

https://developers.google.com/mobile-ads-sdk/docs/ios/intermediate

Change the GAD_ ad sizes with:

kGADAdSizeBanner.size.width and kGADAdSizeBanner.size.height


Related Topics



Leave a reply



Submit