次のコードを使用して、sdcard に保存されている apk ファイルをインストールできます。
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);
assets フォルダーに保存されている apk ファイルをインストールするにはどうすればよいですか? 出来ますか?