I can install the apk file stored on the SD card using the following code:
Intent intent = new Intent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(new File("/mnt/sdcard/downloads/Sample.apk")), "application/vnd.android.package-archive"); startActivity(intent);
How to install apk file stored in resource folder? Is it possible?
source share