File outfile = new File("/asdf/aaaa/xxx.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(outfile), "application/vnd.android.package-archive");
startActivityForResult(intent, 102);
다운로드 다 받은게 확인되면 이런식으로 강제로 apk를 호출하면 됩니다.