Skip to content

Instantly share code, notes, and snippets.

@tral
Created January 9, 2015 05:39
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tral/92a9e57e10e91db97e9f to your computer and use it in GitHub Desktop.
Save tral/92a9e57e10e91db97e9f to your computer and use it in GitHub Desktop.
Code for the "Rate app" button (To open its page in Google Play Store)
Intent int_rate = new Intent(Intent.ACTION_VIEW,
Uri.parse("market://details?id="
+ getApplicationContext().getPackageName()));
int_rate.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
getApplicationContext().startActivity(int_rate);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment