I was able to successfully integrate AdMob into the iOS exported projects, but I am running into an issue with Android.
Without AdMob, the app compiles and runs great in the Android emulator, but when I integrate AdMob (following https://developers.google.com/mobile-ads-sdk/docs/?hl=en_US#android and https://developers.google.com/mobile-ads-sdk/docs/admob/fundamentals#android I get an error with this line... code
// Lookup your LinearLayout assuming it's been given
// the attribute android:id="@+id/mainLayout"
LinearLayout layout = (LinearLayout)findViewById(R.id.mainLayout);
/code
it seems that "mainLayout" is not valid. Any clues what appery names the main layout?