I'd like to know if it is possible to trigger programmatically the installation of an apk that is on the card ?
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive"); startActivity(intent);
(courtesy of anddev.org)
2.1m questions
2.1m answers
60 comments
57.0k users