iOS Build error

Hi, I’m getting this while trying to build my app on iOS, I’m getting this
 

Mar 24 00:29:19.838: ERROR: Builder failed: Undefined symbols for architecture armv7: Mar 24 00:29:19.838:   "\_OBJC\_CLASS\_$\_ASIdentifierManager", referenced from: Mar 24 00:29:19.839: BUILD ERROR: There was a problem linking the app.          Check the console for more information. Mar 24 00:29:19.839:       objc-class-ref in libads-admob.a(GADDevice.o) Mar 24 00:29:19.839:       objc-class-ref in libads-admob.a(GADGestureIdUtil.o) Mar 24 00:29:19.839: ld: symbol(s) not found for architecture armv7 Mar 24 00:29:19.839: clang: error: linker command failed with exit code 1 (use -v to see invocation) Mar 24 00:29:19.843: iOS build failed (5)

build settings:
 

-- Supported values for orientation: -- portrait, portraitUpsideDown, landscapeLeft, landscapeRight settings = { orientation = { default = "portrait", supported = { "portrait", } }, plugins = { ["CoronaProvider.ads.admob"] = { publisherId = "com.coronalabs" }, }, iphone = { plist = { UIStatusBarHidden = true, CFBundleVersion = "1.1.0", CFBundleShortVersionString = "1.1.0", UIPrerenderedIcon = true, -- set to false for "shine" overlay --UIApplicationExitsOnSuspend = true, -- uncomment to quit app on suspend UIAppFonts = { "GeosansLight.ttf" }, CFBundleIconFiles = { "Icon.png", "Icon@2x.png", "Icon@3x.png", "Icon-Small@3x.png", "Icon-Small-40.png", "Icon-Small-40@2x.png", "Icon-60.png", "Icon-60@2x.png", "Icon-72.png", "Icon-72@2x.png", "Icon-76.png", "Icon-76@2x.png", "Icon-Small-50.png", "Icon-Small-50@2x.png", "Icon-Small.png", "Icon-Small@2x.png" }, UIAppFonts = { "GeosansLight.ttf" }, --[[-- iOS app URL schemes: CFBundleURLTypes = { { CFBundleURLSchemes = { "fbXXXXXXXXXXXXXX", -- example scheme for facebook "coronasdkapp", -- example second scheme } } } --]] } }, --[[-- Android permissions androidPermissions = { "android.permission.INTERNET", "android.permission.ACCESS\_NETWORK\_STATE" },]]-- }

any clue?

Did you include the AdMob V2’s .a file and all required frameworks for it?  See:

https://developers.google.com/mobile-ads-sdk/docs/admob/ios/quick-start#adding_the_sdk_to_your_xcode_project

Rob

I didn’t use to do that before… However I’m using Corona… where do I add that anyway?

Okay, I guess I need to ask.  Are you doing a Corona SDK build (running the Corona Simulator and doing the build from there) or are you trying to do a Corona Enterprise build?  The error leads me to believe you’re doing an Enterprise build.  Enterprise doesn’t use build.settings, you have to do that in Xcode including bringing in all the required frameworks.

See: https://coronalabs.com/blog/2015/03/10/tutorial-corona-sdk-to-corona-enterprise/

Rob

That wasn’t really the case, I have it solved now, I just changed this:|

 

 plugins = { ["CoronaProvider.ads.admob"] = { publisherId = "com.coronalabs" }, }

to this:

 

 plugins = { ["plugin.google.play.services"] = { publisherId = "com.coronalabs" }, },

Apparently because it’s Admob V2 now. Thanks anyway.
 

Did you include the AdMob V2’s .a file and all required frameworks for it?  See:

https://developers.google.com/mobile-ads-sdk/docs/admob/ios/quick-start#adding_the_sdk_to_your_xcode_project

Rob

I didn’t use to do that before… However I’m using Corona… where do I add that anyway?

Okay, I guess I need to ask.  Are you doing a Corona SDK build (running the Corona Simulator and doing the build from there) or are you trying to do a Corona Enterprise build?  The error leads me to believe you’re doing an Enterprise build.  Enterprise doesn’t use build.settings, you have to do that in Xcode including bringing in all the required frameworks.

See: https://coronalabs.com/blog/2015/03/10/tutorial-corona-sdk-to-corona-enterprise/

Rob

That wasn’t really the case, I have it solved now, I just changed this:|

 

 plugins = { ["CoronaProvider.ads.admob"] = { publisherId = "com.coronalabs" }, }

to this:

 

 plugins = { ["plugin.google.play.services"] = { publisherId = "com.coronalabs" }, },

Apparently because it’s Admob V2 now. Thanks anyway.