Skip to content

Instantly share code, notes, and snippets.

@ashishkudale
Created April 11, 2020 17:21
Show Gist options
  • Save ashishkudale/cad889c98fc58b58de9d5394dc164e26 to your computer and use it in GitHub Desktop.
Save ashishkudale/cad889c98fc58b58de9d5394dc164e26 to your computer and use it in GitHub Desktop.
//open settings when user
private void openSettings() {
Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
Uri uri = Uri.fromParts("package", getPackageName(), null);
intent.setData(uri);
startActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment