From 2e9c48bf1079724222d5c5e5b0d940d2c653580d Mon Sep 17 00:00:00 2001 From: M66B Date: Sun, 13 Jan 2019 13:04:17 +0000 Subject: [PATCH] Updated FAQ --- FAQ.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/FAQ.md b/FAQ.md index dc56f62f3a..ff0759493f 100644 --- a/FAQ.md +++ b/FAQ.md @@ -131,15 +131,15 @@ Stripped and reformatted messages are often better readable than original messag **(1) Which permissions are needed and why?** -* have full network access (INTERNET): to send and receive email -* view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes -* run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start -* in-app billing (BILLING): to allow in-app purchases -* foreground service (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later, see also the next question -* prevent device from sleeping (WAKE_LOCK): to keep the device awake while synchronizing messages -* Optional: read your contacts (READ_CONTACTS): to autocomplete addresses and to show photos -* Use accounts on the device (USE_CREDENTIALS): needed to select accounts on Android version 5.1 Lollipop and before (not used on later Android versions) -* Optional: find accounts on the device (GET_ACCOUNTS): to use [OAuth](https://en.wikipedia.org/wiki/OAuth) instead of passwords +* *have full network access* (INTERNET): to send and receive email +* *view network connections* (ACCESS_NETWORK_STATE): to monitor internet connectivity changes +* *run at startup* (RECEIVE_BOOT_COMPLETED): to start monitoring on device start +* *in-app billing* (BILLING): to allow in-app purchases +* *foreground service* (FOREGROUND_SERVICE): to run a foreground service on Android 9 Pie and later, see also the next question +* *prevent device from sleeping* (WAKE_LOCK): to keep the device awake while synchronizing messages +* Optional: *read your contacts* (READ_CONTACTS): to autocomplete addresses and to show photos +* Optional: *find accounts on the device* (GET_ACCOUNTS): to use [OAuth](https://en.wikipedia.org/wiki/OAuth) instead of passwords +* Android 5.1 Lollipop and before: *use accounts on the device* (USE_CREDENTIALS): needed to select accounts (not used/needed on later Android versions)