Skip to content

Instantly share code, notes, and snippets.

@naosim
Created January 13, 2015 08:03
Show Gist options
  • Save naosim/a3c65a170fa4c7b58c3d to your computer and use it in GitHub Desktop.
Save naosim/a3c65a170fa4c7b58c3d to your computer and use it in GitHub Desktop.
Androidのアプリ情報を開くIntent ref: http://qiita.com/naosim_/items/253fa9edfd0fe37ecebf
Intent intent = new Intent();
intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
intent.setData(Uri.parse("package:com.your.app"));
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment