mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
8321745de9
Storage permissions enables the Android permissions READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE.
25 lines
552 B
Go
25 lines
552 B
Go
package main
|
|
|
|
var AndroidPermissions = map[string][]string{
|
|
"network": {
|
|
"android.permission.INTERNET",
|
|
},
|
|
"bluetooth": {
|
|
"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"`,
|
|
`name="android.hardware.bluetooth_le"`,
|
|
},
|
|
}
|