How can I know from packageManager if a package is still in the installation process (already started, but not yet finished installing)? The installation is using below source code:
Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
File file = new File(pathToAPK);
intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
startActivity(intent);