Skip to content

Instantly share code, notes, and snippets.

@faried
Created January 19, 2016 17:11
Show Gist options
  • Save faried/ae1d93495081d0af0297 to your computer and use it in GitHub Desktop.
Save faried/ae1d93495081d0af0297 to your computer and use it in GitHub Desktop.
android - go to the app's details under settings.
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, Uri.fromParts("package", getPackageName(), null));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment