Created
January 13, 2015 08:03
-
-
Save naosim/a3c65a170fa4c7b58c3d to your computer and use it in GitHub Desktop.
Androidのアプリ情報を開くIntent ref: http://qiita.com/naosim_/items/253fa9edfd0fe37ecebf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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