Loading services/core/java/com/android/server/pm/BackgroundInstallControlService.java +8 −0 Original line number Diff line number Diff line Loading @@ -231,6 +231,14 @@ public class BackgroundInstallControlService extends SystemService { return; } // the installers without INSTALL_PACKAGES perm can't perform // the installation in background. So we can just filter out them. if (mPermissionManager.checkPermission(installerPackageName, android.Manifest.permission.INSTALL_PACKAGES, userId) != PackageManager.PERMISSION_GRANTED) { return; } // convert up-time to current time. final long installTimestamp = System.currentTimeMillis() - (SystemClock.uptimeMillis() - appInfo.createTimestamp); Loading Loading
services/core/java/com/android/server/pm/BackgroundInstallControlService.java +8 −0 Original line number Diff line number Diff line Loading @@ -231,6 +231,14 @@ public class BackgroundInstallControlService extends SystemService { return; } // the installers without INSTALL_PACKAGES perm can't perform // the installation in background. So we can just filter out them. if (mPermissionManager.checkPermission(installerPackageName, android.Manifest.permission.INSTALL_PACKAGES, userId) != PackageManager.PERMISSION_GRANTED) { return; } // convert up-time to current time. final long installTimestamp = System.currentTimeMillis() - (SystemClock.uptimeMillis() - appInfo.createTimestamp); Loading