Skip to content

Instantly share code, notes, and snippets.

@Kashif-E
Created March 6, 2021 16:14
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 Kashif-E/390428aecfa0942300c3f2f2c26bbf3f to your computer and use it in GitHub Desktop.
Save Kashif-E/390428aecfa0942300c3f2f2c26bbf3f to your computer and use it in GitHub Desktop.
private fun openSettings() {
Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS).apply {
addCategory(Intent.CATEGORY_DEFAULT)
data = Uri.parse("package:$packageName")
}.run(::startActivity)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment