Skip to content

Instantly share code, notes, and snippets.

@aegis123
Last active December 17, 2015 01:59
Show Gist options
  • Save aegis123/5532594 to your computer and use it in GitHub Desktop.
Save aegis123/5532594 to your computer and use it in GitHub Desktop.
Open an App on the Play store
protected void OpenAppInPlay() {
Uri uri = Uri.parse("market://details?id="/** put package name of app here. */);
Intent browserIntent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(browserIntent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment