Hai friends My name is arunkumar and I'm working as an android developer.I'm gonna blog my journey through android world right here...I hope it will be helpful for anyone who's in the same journey...and i also want you to help me to improve the quality of this blog if you are an experienced Android developer...
Showing posts with label Install Android APK Programmatically. Show all posts
Showing posts with label Install Android APK Programmatically. Show all posts
Thursday, August 16, 2012
Install Android APK Programmatically
To install app programmatically use following code, you'll need user permissions though.
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setData(Uri.parse("file:///path/to/your.apk"))
.setType("application/vnd.android.package-archive";
startActivity(promptInstall);
Subscribe to:
Posts (Atom)