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

Admob blocked my account but the ad is still displayed. #128

Closed timemake closed 5 years ago

timemake commented 5 years ago

I have implemented this library into one of my apps since it was very hard to implement Native Ad. In general, using the library is more easier and convenient. Recently, Google blocked my account and all apps don't show the ad except one that has this library. I'm not sure where the ad is coming from. Please let me know why it happened.

kot331107 commented 5 years ago

Hi! Have u set the release id for ad? понедельник, 08 апреля 2019г., 05:25 +03:00 от timemake notifications@github.com :

I have implemented this library into one of my apps since it was very hard to implement Native Ad. In general, using the library is more easier and convenient. Recently, Google blocked my account and all apps don't show the ad except one that has this library. I'm not sure where the ad is coming from. Please let me know why it happened. — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub , or mute the thread .

timemake commented 5 years ago

I'm not able to check the code on AdMob since it is blocked now. But I checked the source code and it is not the test ad code so I assume I put the release id.

timemake commented 5 years ago

I checked my code again and noticed I put this.

adapterWrapper = new AdmobAdapterWrapper(getActivity(), (String) null, EnumSet.of(EAdType.ADVANCED_INSTALLAPP));

This may be the reason why I saw the ad. Luckily, my Adsense account is alive again since Google has approved my appeal.

kot331107 commented 5 years ago

Congrats :) (String) null should be the reason of that evil.

timemake commented 5 years ago

Cool, I will remove that. Thanks,