From 487c50b07ce9800ceca4f144b6384fa448c8cb0b Mon Sep 17 00:00:00 2001 From: M66B Date: Sat, 7 Sep 2024 18:05:30 +0200 Subject: [PATCH] Updated FAQ --- FAQ.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/FAQ.md b/FAQ.md index 2e4fbd4269..f2f70f48cc 100644 --- a/FAQ.md +++ b/FAQ.md @@ -443,7 +443,7 @@ The following Android permissions are **required**: * *have full network access* (INTERNET): to send and receive via the internet * *view network connections* (ACCESS_NETWORK_STATE): to monitor connectivity changes (mobile data, WiFi) * *run at startup* (RECEIVE_BOOT_COMPLETED): to start sending and receiving on device start -* *run foreground service* (FOREGROUND_SERVICE/DATA_SYNC): to run a foreground service on Android 9 Pie and later, see also the next question +* *run foreground service* (FOREGROUND_SERVICE/DATA_SYNC/SPECIAL_USE): to run a foreground service on Android 9 Pie and later, see also the next question * *schedule exact alarm* (SCHEDULE_EXACT_ALARM): to use exact alarm scheduling (Android 12 and later), for example to snooze messages * *prevent device from sleeping* (WAKE_LOCK): to keep the device awake while performing actions, like synchronization of messages * *use fingerprint hardware* (USE_FINGERPRINT) and *use biometric hardware* (USE_BIOMETRIC): to use biometric authentication (fingerprint, face unlock, etc) diff --git a/index.html b/index.html index 4bd912e929..9f02a8be6c 100644 --- a/index.html +++ b/index.html @@ -429,7 +429,7 @@
  • have full network access (INTERNET): to send and receive via the internet
  • view network connections (ACCESS_NETWORK_STATE): to monitor connectivity changes (mobile data, WiFi)
  • run at startup (RECEIVE_BOOT_COMPLETED): to start sending and receiving on device start
  • -
  • run foreground service (FOREGROUND_SERVICE/DATA_SYNC): to run a foreground service on Android 9 Pie and later, see also the next question
  • +
  • run foreground service (FOREGROUND_SERVICE/DATA_SYNC/SPECIAL_USE): to run a foreground service on Android 9 Pie and later, see also the next question
  • schedule exact alarm (SCHEDULE_EXACT_ALARM): to use exact alarm scheduling (Android 12 and later), for example to snooze messages
  • prevent device from sleeping (WAKE_LOCK): to keep the device awake while performing actions, like synchronization of messages
  • use fingerprint hardware (USE_FINGERPRINT) and use biometric hardware (USE_BIOMETRIC): to use biometric authentication (fingerprint, face unlock, etc)