Skip to content

Instantly share code, notes, and snippets.

@JosiasSena
Created July 15, 2016 23:24
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 JosiasSena/e790118e88176852c2478808a9a965d8 to your computer and use it in GitHub Desktop.
Save JosiasSena/e790118e88176852c2478808a9a965d8 to your computer and use it in GitHub Desktop.
go to the settings for the current application
public static void goToAppSettings(final Context context) {
final Uri uri = Uri.fromParts("package", context.getPackageName(), null);
final Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, uri);
context.startActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment