Skip to content

Instantly share code, notes, and snippets.

@hiking93
Created November 25, 2019 10:25
Show Gist options
  • Save hiking93/13867794bda9f68c56201e731fe19eb7 to your computer and use it in GitHub Desktop.
Save hiking93/13867794bda9f68c56201e731fe19eb7 to your computer and use it in GitHub Desktop.
Install APK in app
const val ANDROID_PACKAGE_ARCHIVE = "application/vnd.android.package-archive"
startActivity(Intent(Intent.ACTION_VIEW).apply {
flags = Intent.FLAG_ACTIVITY_NEW_TASK or Intent.FLAG_GRANT_READ_URI_PERMISSION
setDataAndType(uriForYourApk, MimeType.ANDROID_PACKAGE_ARCHIVE)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment