Created
November 25, 2019 10:25
-
-
Save hiking93/13867794bda9f68c56201e731fe19eb7 to your computer and use it in GitHub Desktop.
Install APK in app
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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