Our app is getting hit pretty hard by a memory leak. I\'ve found that the root cause is the AdMob AdView keeping references to old activities. The problem is pretty well d
I am using "play-services-ads:7.5.0" and it was not necesary to create de AdMobActivity. It worked by:
Creating adView dinamically
mAdView = new AdView(getApplicationContext(), AdSize.BANNER, banner_ad_unit_id); mAdsContainer.addView(mAdView);
Removing all views from linearLayout on destroy and destroying adView
mAdView.setAdListener(null);
mAdsContainer.removeAllViews();
mAdView.destroy();
Unfortunatelly Interstitial still leaks