<Rate app multiple times in google play problem?> ...
# stackoverflow
u
Rate app multiple times in google play problem? I have an android app that i need to add a rating popup to so i used below code fun showRate() { AppRating.Builder(this) .setMinimumLaunchTimes(5) .setMinimumDays(4) .setMinimumLaunchTimesToShowAgain(5) .setMinimumDaysToShowAgain(10) .setTitleTextId(R.string.RateMessage) .setStoreRatingTitleTextId(R.string.ClickRate) .setStoreRatingMessageTextId(R.string.EmptyMessage) .setRatingThreshold(RatingThreshold.NONE)...