Skip to content

Instantly share code, notes, and snippets.

@scruffyfox
Created April 13, 2012 11:58
Show Gist options
  • Save scruffyfox/2376354 to your computer and use it in GitHub Desktop.
Save scruffyfox/2376354 to your computer and use it in GitHub Desktop.
Goto marketplace from app
Intent market = new Intent(Intent.ACTION_VIEW);
market.setData(Uri.parse("market://details?id=" + getPackageName()));
startActivity(market);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment