这是 Android 13(提取自 MIUI 14) 的 Package Installer 的 checkIfAllowedAndInitiateInstall
private void checkIfAllowedAndInitiateInstall() {
......
if (this.mAllowUnknownSources || !isInstallRequestFromUnknownSource(getIntent())) {
initiateInstall();
return;
}
......
 
 
Back to Top