SergeyA
SergeyA
If RateThisApp.showRateDialogIfNeeded() called multiple times while app execution, the dialog appears on each call. Even if mLaunchTimes > 1. I think we need to update the value of the mLaunchTimes,...
Promise._catch() causes to lost previous result so the next handler in the chain gets null. See: https://github.com/onehilltech/promises/blob/e5b76c56d372acfb200e97b37ecde0e5146f54ee/promises-jvm/src/main/java/com/onehilltech/promises/Promise.java#L520 ```java public Promise _catch (OnRejected onRejected) { if (onRejected == null) throw new...