mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 18:18:55 +00:00
fix(android): Use SCHEDULE_EXACT_ALARM instead of USE_EXACT_ALARM (#5595)
See https://developer.android.com/develop/background-work/services/fg-service-types#system-exempted and https://developer.android.com/develop/background-work/services/alarms/schedule We have to use `SCHEDULE_EXACT_ALARM` if we're not an alarm clock or calendar app.
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_SYSTEM_EXEMPTED" />
|
||||
<uses-permission android:name="android.permission.USE_EXACT_ALARM" />
|
||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
||||
|
||||
<queries>
|
||||
<intent>
|
||||
|
||||
Reference in New Issue
Block a user