Skip to content

Instantly share code, notes, and snippets.

@TOrnelas
Created January 12, 2018 17:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TOrnelas/f3c0536a66e41a8e8cbba8bc59f7fb19 to your computer and use it in GitHub Desktop.
Save TOrnelas/f3c0536a66e41a8e8cbba8bc59f7fb19 to your computer and use it in GitHub Desktop.
String appPackageName = "com.travelcentral24.yougoto";
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
} catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment