forked from joejulian/gio
61b2e37691
Signed-off-by: Elias Naur <mail@eliasnaur.com>
17 lines
461 B
Go
17 lines
461 B
Go
// SPDX-License-Identifier: Unlicense OR MIT
|
|
|
|
/*
|
|
Package camera implements permissions to access camera hardware.
|
|
|
|
# Android
|
|
|
|
The following entries will be added to AndroidManifest.xml:
|
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
|
|
|
CAMERA is a "dangerous" permission. See documentation for package
|
|
gioui.org/app/permission for more information.
|
|
*/
|
|
package camera
|