add android permission doc

This commit is contained in:
Neeraj Gupta 2022-05-09 23:15:16 +05:30
parent d103ffe7f9
commit 733302b373
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

37
android/permissions.md Normal file
View file

@ -0,0 +1,37 @@
## Android Permissions
> android.permission.READ_EXTERNAL_STORAGE
**Used to read photos and videos from the device.**
> android.permission.READ_CONTACTS
**Used when a customer tries to pick a contact in the phonebook to share an album with. This is an optional permission, which users can deny if their android version allows granting granular permission.**
> android.permission.ACCESS_MEDIA_LOCATION
**Used to extract the coordinates a photo/video was captured in. This information is encrypted with the customer's key before being sent to our servers.**
> android.permission.WRITE_EXTERNAL_STORAGE
**Used for downloading photos to the disk.**
> android.permission.USE_BIOMETRIC
**Used to optionally lock the app behind the default lock screen.**
> android.permission.USE_FINGERPRINT
Used to optionally lock the app behind the default lock screen.
> android.permission.RECEIVE_BOOT_COMPLETED
**Used to trigger background uploads for photos and videos that were clicked.**
> android.permission.USE_FULL_SCREEN_INTENT
**This is needed by the local notification library, to show notifications about your previous memories.**
> android.permission.SET_WALLPAPER
**This allows the user to set a particular photo as wallpaper.**