mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-04 00:45:35 +00:00
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:
committed by
Elias Naur
parent
99d97d2ef5
commit
8321745de9
@@ -9,15 +9,16 @@ var AndroidPermissions = map[string][]string{
|
||||
"android.permission.BLUETOOTH_ADMIN",
|
||||
"android.permission.ACCESS_FINE_LOCATION",
|
||||
},
|
||||
"bluetooth_le": {
|
||||
"android.permission.BLUETOOTH",
|
||||
"android.permission.BLUETOOTH_ADMIN",
|
||||
"android.permission.ACCESS_FINE_LOCATION",
|
||||
"storage": {
|
||||
"android.permission.READ_EXTERNAL_STORAGE",
|
||||
"android.permission.WRITE_EXTERNAL_STORAGE",
|
||||
},
|
||||
}
|
||||
|
||||
var AndroidFeatures = map[string][]string{
|
||||
"default": {`glEsVersion="0x00030000"`},
|
||||
"bluetooth": {`name="android.hardware.bluetooth"`},
|
||||
"bluetooth_le": {`name="android.hardware.bluetooth_le"`},
|
||||
"default": {`glEsVersion="0x00030000"`},
|
||||
"bluetooth": {
|
||||
`name="android.hardware.bluetooth"`,
|
||||
`name="android.hardware.bluetooth_le"`,
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user