Who uses AdMob in a MonoTouch iPhone app?
The current sdk we got for admob is admob_iphone_sdk_20100908.tar.gz
It has two lib files, but only the NoThumb file is usefull due to the well known bug in the Apple linker:
libAdMobNoThumb.a (2.464.412 bytes, created on 16 september 2010 at 14:41)
When we link a test app (just a freshly generated iPhone Windows-based Project, with no changes whatsoever) using following extra flags:
-gcc_flags "-L${ProjectDir} -lAdMobNoThumb -force_load ${ProjectDir}/libAdMobNoThumb.a"
mtouch fails miserably with mtouch failed with no output (1)
(We use the -force_load option instead of the -ObjC option, as indicated in the note at the end of:
http://developer.apple.com/library/mac/#qa/qa2006/qa1490.html)
The MT_SampleAdMob.zip test project available from the blog at
http://sabonrai.wordpress.com/2009/09/27/monotouch-binding-for-admob/
contains two older NoThumb libraries:
libAdMobDeviceNoThumb3_0.a (539.288 bytes, created 15 jan 2010 at 03:26)
libAdMobSimulator3_0.a (488.464 bytes, created 5 september 2009)
When using the libAdMobDeviceNoThumb3_0.a library with following gcc_flags:
-gcc_flags "-L${ProjectDir} -lAdMobDeviceNoThumb3_0 -force_load ${ProjectDir}/libAdMobDeviceNoThumb3_0.a"
the build succeeds and an app is generated.
We have not yet integrated any of the admob stuff in this app, so we are not stating anything about admob functionality. Merely about being able to link with a library, which seems essential before even trying to use its functionality.
We are frustrated by the fact that the official library does not link, where an older version does link. Also, the size difference is considerable: the official file has swollen with a factor of 4.5!
So if anyone out there uses admob in a monotouch app, please supply any relevant information so that we can proceed with our app.
TIA,
Mollyke.