Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a7b29cc authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "canScheduleExactAlarms returns true for older apps" into sc-dev am:...

Merge "canScheduleExactAlarms returns true for older apps" into sc-dev am: 236f2686 am: 5eb0fd40

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15046540

Change-Id: If87c5ebda5c81dc61b4ca32b0d6ece3bb3e5d71f
parents 03cfbabc 5eb0fd40
Loading
Loading
Loading
Loading
+11 −5
Original line number Original line Diff line number Diff line
@@ -1285,14 +1285,20 @@ public class AlarmManager {
    }
    }


    /**
    /**
     * Called to check if the caller has the permission
     * Called to check if the caller can schedule exact alarms.
     * {@link Manifest.permission#SCHEDULE_EXACT_ALARM}.
     * <p>
     *
     * Apps targeting {@link Build.VERSION_CODES#S} or higher can schedule exact alarms if they
     * Apps can start {@link android.provider.Settings#ACTION_REQUEST_SCHEDULE_EXACT_ALARM} to
     * have the {@link Manifest.permission#SCHEDULE_EXACT_ALARM} permission. These apps can also
     * start {@link android.provider.Settings#ACTION_REQUEST_SCHEDULE_EXACT_ALARM} to
     * request this from the user.
     * request this from the user.
     * <p>
     * Apps targeting lower sdk versions, can always schedule exact alarms.
     *
     *
     * @return {@code true} if the caller has the permission, {@code false} otherwise.
     * @return {@code true} if the caller can schedule exact alarms.
     * @see android.provider.Settings#ACTION_REQUEST_SCHEDULE_EXACT_ALARM
     * @see android.provider.Settings#ACTION_REQUEST_SCHEDULE_EXACT_ALARM
     * @see #setExact(int, long, PendingIntent)
     * @see #setExactAndAllowWhileIdle(int, long, PendingIntent)
     * @see #setAlarmClock(AlarmClockInfo, PendingIntent)
     */
     */
    public boolean canScheduleExactAlarms() {
    public boolean canScheduleExactAlarms() {
        return hasScheduleExactAlarm(mContext.getOpPackageName(), mContext.getUserId());
        return hasScheduleExactAlarm(mContext.getOpPackageName(), mContext.getUserId());
+3 −0
Original line number Original line Diff line number Diff line
@@ -2572,6 +2572,9 @@ public class AlarmManagerService extends SystemService {
                throw new SecurityException("Uid " + callingUid
                throw new SecurityException("Uid " + callingUid
                        + " cannot query hasScheduleExactAlarm for uid " + uid);
                        + " cannot query hasScheduleExactAlarm for uid " + uid);
            }
            }
            if (!isExactAlarmChangeEnabled(packageName, userId)) {
                return true;
            }
            return (uid > 0) ? hasScheduleExactAlarmInternal(packageName, uid) : false;
            return (uid > 0) ? hasScheduleExactAlarmInternal(packageName, uid) : false;
        }
        }


+4 −4
Original line number Original line Diff line number Diff line
@@ -1914,11 +1914,11 @@ public class AlarmManagerServiceTest {
    public void hasScheduleExactAlarmBinderCallChangeDisabled() throws RemoteException {
    public void hasScheduleExactAlarmBinderCallChangeDisabled() throws RemoteException {
        mockChangeEnabled(AlarmManager.REQUIRE_EXACT_ALARM_PERMISSION, false);
        mockChangeEnabled(AlarmManager.REQUIRE_EXACT_ALARM_PERMISSION, false);


        mockExactAlarmPermissionGrant(true, false, MODE_DEFAULT);
        mockExactAlarmPermissionGrant(false, true, MODE_DEFAULT);
        assertFalse(mBinder.hasScheduleExactAlarm(TEST_CALLING_PACKAGE, TEST_CALLING_USER));
        assertTrue(mBinder.hasScheduleExactAlarm(TEST_CALLING_PACKAGE, TEST_CALLING_USER));


        mockExactAlarmPermissionGrant(true, true, MODE_ALLOWED);
        mockExactAlarmPermissionGrant(true, false, MODE_ERRORED);
        assertFalse(mBinder.hasScheduleExactAlarm(TEST_CALLING_PACKAGE, TEST_CALLING_USER));
        assertTrue(mBinder.hasScheduleExactAlarm(TEST_CALLING_PACKAGE, TEST_CALLING_USER));
    }
    }


    private void mockChangeEnabled(long changeId, boolean enabled) {
    private void mockChangeEnabled(long changeId, boolean enabled) {