1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-07 23:16:37 +00:00

Updated FAQ

This commit is contained in:
M66B 2019-01-13 13:04:17 +00:00
parent 4595f3c907
commit 2e9c48bf10

18
FAQ.md
View file

@ -131,15 +131,15 @@ Stripped and reformatted messages are often better readable than original messag
<a name="faq1"></a> <a name="faq1"></a>
**(1) Which permissions are needed and why?** **(1) Which permissions are needed and why?**
* have full network access (INTERNET): to send and receive email * *have full network access* (INTERNET): to send and receive email
* view network connections (ACCESS_NETWORK_STATE): to monitor internet connectivity changes * *view network connections* (ACCESS_NETWORK_STATE): to monitor internet connectivity changes
* run at startup (RECEIVE_BOOT_COMPLETED): to start monitoring on device start * *run at startup* (RECEIVE_BOOT_COMPLETED): to start monitoring on device start
* in-app billing (BILLING): to allow in-app purchases * *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 * *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 * *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: *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
* 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)
<br /> <br />