mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
c15415b0d9
Signed-off-by: Sebastien Binet <s@sbinet.org>
17 lines
465 B
Go
17 lines
465 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
|