I\'m trying to add an AdMob ad to my android application but whenever I\'m opening the activity that is supposed to display the ad I get this error:
I/Ads(11
I had this error too and solved by loading the ad in separate thread (in ICS you're not allowed to perform network operation in the main thread)
(new Thread() { public void run() { Looper.prepare(); adView.loadAd(new AdRequest()); } }).start();