IntentReceiverLeaked usando AdMob

Por alguna razón sigo golpeando este error al intentar usar AdMob en mi aplicación (red de meditación).

Activity com.tfl.tfl.tagDetailActivity has leaked IntentReceiver com.adsdk.sdk.banner.AdView$6@405940a0 that was originally registered here. Are you missing a call to unregisterReceiver()? android.app.IntentReceiverLeaked: Activity com.tfl.tfl.tagDetailActivity has leaked IntentReceiver com.adsdk.sdk.banner.AdView$6@405940a0 that was originally registered here. Are you missing a call to unregisterReceiver()? 

Aquí están las piezas de código relevantes: OnCreate

  adView = new AdView(this, AdSize.BANNER, ADMOB_PUBLISHER_ID); LinearLayout layout = (LinearLayout) findViewById(R.id.tag_detail_ad_layout); layout.addView(adView); adView.loadAd(buildAdMobRequest()); 

 @Override public void onDestroy() { if (adView != null) { adView.destroy(); } super.onDestroy(); } 

Al leer alrededor parece destruir la adview debe solucionar el problema, pero todavía estoy recibiendo el error. El error surge cuando toco 'atrás' en la página que contiene los anuncios.

FlipAndroid es un fan de Google para Android, Todo sobre Android Phones, Android Wear, Android Dev y Aplicaciones para Android Aplicaciones.