main.go raw

   1  // SPDX-License-Identifier: Unlicense OR MIT
   2  
   3  /*
   4  Package camera implements permissions to access camera hardware.
   5  
   6  Android
   7  
   8  The following entries will be added to AndroidManifest.xml:
   9  
  10      <uses-permission android:name="android.permission.CAMERA"/>
  11      <uses-feature android:name="android.hardware.camera" android:required="false"/>
  12  
  13  CAMERA is a "dangerous" permission. See documentation for package
  14  github.com/p9c/p9/pkg/gel/gio/app/permission for more information.
  15  */
  16  package camera
  17