mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-06 18:05: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
@@ -1 +1,24 @@
|
||||
// SPDX-License-Identifier: Unlicense OR MIT
|
||||
|
||||
/*
|
||||
Package bluetooth implements permissions to access Bluetooth and Bluetooth
|
||||
Low Energy hardware, including the ability to discover and pair devices.
|
||||
|
||||
Android
|
||||
|
||||
The following entries will be added to AndroidManifest.xml:
|
||||
|
||||
<uses-permission android:name="android.permission.BLUETOOTH"/>
|
||||
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
||||
<uses-feature android:name="android.hardware.bluetooth" android:required="false"/>
|
||||
<uses-feature android:name="android.hardware.bluetooth_le" android:required="false"/>
|
||||
|
||||
Note that ACCESS_FINE_LOCATION is required on Android before the Bluetooth
|
||||
device may be used.
|
||||
See https://developer.android.com/guide/topics/connectivity/bluetooth.
|
||||
|
||||
ACCESS_FINE_LOCATION is a "dangerous" permission. See documentation for
|
||||
package gioui.org/app/permission for more information.
|
||||
*/
|
||||
package bluetooth
|
||||
|
||||
Reference in New Issue
Block a user