app/permission: add documentation and storage permissions

Storage permissions enables the Android permissions
READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE.
This commit is contained in:
Greg Pomerantz
2019-11-25 13:39:35 -05:00
committed by Elias Naur
parent 99d97d2ef5
commit 8321745de9
6 changed files with 96 additions and 38 deletions
+17
View File
@@ -0,0 +1,17 @@
// SPDX-License-Identifier: Unlicense OR MIT
/*
Package storage implements read and write storage permissions
on mobile devices.
Android
The following entries will be added to AndroidManifest.xml:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE are "dangerous" permissions.
See documentation for package gioui.org/app/permission for more information.
*/
package storage