Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play Store link directly to ratings heading

I'm trying to create a more streamlined link to rate an app.

From within an android app, it is simple to link to the app page on the play store market://details?id=<package_name> However, this links to the top of the app's page, and the user has to scroll down to find the rating control.

Generally, the fewer actions needed, the more likely the user is to follow through. (e.g. If they scroll past the rating control accidentally, they're likely to just go back to whatever they were doing before.) Therefore, ideally the "Rate on store" button in the app could not only open the appropriate page in the play store, but open it to the correct heading. The documentation either doesn't list how to do this, or does so in a non obvious location.

There is an old question Here where the accepted answer is to append &reviewId=0 to the market link. i.e. market://details?id=<package_name>&reviewId=0 Unfortunately this method no longer works.

Is there a currently working way to link a user directly to the correct position on the google play store page for rating an app?

like image 594
jbcarpen Avatar asked Mar 28 '17 17:03

jbcarpen


1 Answers

Google recently released their new In-App Review API. This enables you to show a rating screen directly in your app.

You can find out how to implement it here: https://developer.android.com/guide/playcore/in-app-review

like image 174
user14678216 Avatar answered Oct 12 '22 20:10

user14678216