i'm using adwhirl with admob..The ads appears but i'm getting this exception in the log java.lang.NosuchMethodError:com.google.ads.AdView.destroy i don't understand why .. i'm using adwhirl layout in my activites to request the ads..
LinearLayout adLayout = (LinearLayout) findViewById(R.id.ads);
AdWhirlLayout adWhirlLayout = new AdWhirlLayout(this, "---------");
RelativeLayout.LayoutParams adWhirlLayoutParams = new
RelativeLayout.LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT);
adLayout.addView(adWhirlLayout, adWhirlLayoutParams);
adLayout.invalidate();
and i'm just using the SDKs for the other AdNw ,declaring them in the manifest is it the right way to request Ads ???