clockbyte / admobadapter

It wraps your Adapter to display Admob native ads and banners in a ListView/RecyclerView data set. It based on the Yahoo fetchr project https://github.com/yahoo/fetchr
Apache License 2.0
237 stars 75 forks source link

AdmobExpressRecyclerAdapterWrapper crashes application on fast scroll #121

Open pranavchaudhary opened 6 years ago

pranavchaudhary commented 6 years ago

Admobadapter version or commit: 1.4.6

Android compileSdkVersion: 267

Issue description briefly: I have implemented AdmobExpressRecyclerAdapterWrapper and on opening application the recycler view item flicker meantime if i scroll application to the end, it crash

Steps to reproduce: Implement AdmobExpressRecyclerAdapterWrapper, install and scroll fast till end

admobExpressRecyclerAdapterWrapper = AdmobExpressRecyclerAdapterWrapper.builder(this) .setLimitOfAds(20) .setFirstAdIndex(2) .setNoOfDataBetweenAds(4) .setAdapter(adapter) .setSingleAdUnitId(getString(R.string.banner_ad_unit_id)) .build();