Abdullah Atta

Results 558 comments of Abdullah Atta

Native Ads came out of Beta recently so I might start an implementation soon.

We have revamped sync in v3 which should fix a lot of these issues. You can read more about the new sync here: https://blog.notesnook.com/introducing-notesnook-v3/

> Would anybody be bothered if it took 100ms to build the search index No harm in having better performance if it's possible without any compromises. The stemmer was one...

I will take a look and see what's the problem. I also use this library and ads are fine. What type of ad are you using? Can you show your...

I didn't make that many changes in the code but I will certainly take a look. It seems there's a bug in the changes I made.

So I have a couple of apps on the Play Store and a few of them also got that violation. I found out checking the `AppState` before showing the ad...

Try this code for a quick fix: ``` if (AppState.currentState === 'active') { AdMobInterstitial.showAd(); } ``` A question: do you have ads on app startup? If so then using my...

No, there's no need to edit the Java files. What I gave you needs to be put in `react-native` code. **Edit:** If you want to make a PR, you need...

@123dma Check for `AppState` right before `AdMobInterstitial.showAd()` and it should be fixed (because there is a slight interval between the ad request and the ad showing so check right before...