Package installer doesn't ask to click on "Done" or "Open" after updating app programmatically

1k Views Asked by At

My app has Auto-Update feature. I install apk file using this code:

Uri uri;
Intent intent;

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
    uri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".provider", file);
    intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
    intent.setData(uri);
    intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
} else {
    uri = Uri.fromFile(file);
    intent = new Intent(Intent.ACTION_VIEW);
    intent.setDataAndType(uri, "application/vnd.android.package-archive");
    intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
}

context.startActivity(intent);

The problem is that in api 24 or higher Android package installer doesn't ask to click on "Done" or "Open" after updating completed and dialog will be closed without any questions or any messages.

I need package installer ask what to do like

This Picture.

0

There are 0 best solutions below