Android Question How to use AS RatingBar with Google Playstore App-Rating

GMan

Well-Known Member
Licensed User
Longtime User
How can i use the AS RatingBar Lib with Google Playstore App-Rating ?
The sample works fine, but how to submit the result to the Playstore ?
 

JohnC

Expert
Licensed User
Longtime User
If my above assumptions are correct, then maybe it might be better to place the launchreview call elsewhere in your app instead of when it first launches - because if google does pop-up a rating dialog, it may interfere with some other view/object that's initializing in that activity and cause an asynchronous conflict between your apps UI and the possible google ratings dialog.

This way you can then pick a spot to place the launchreview in your app that would be the most appropriate time to display the ratings dialog and one that you are sure wont interfere with any other UI of your app (and a spot that would make your app's logic easily work with the InAppReview_OnComplete event).
 
Last edited:
Upvote 0
Top