I'm searching for a way to program my application to install silently an apk file. I'm aware about the possibility to launch code looks something like this:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive");
startActivity(intent);
but this code raising before the installation starts a dialog with the apk's require permissions and needs the user to authorization to start the installation.
Is there any way to skip this dialog? Is there any other way to install application on run-time from my code that don't requires the user interaction?