main.go raw

   1  // SPDX-License-Identifier: Unlicense OR MIT
   2  
   3  /*
   4  Package storage implements read and write storage permissions
   5  on mobile devices.
   6  
   7  Android
   8  
   9  The following entries will be added to AndroidManifest.xml:
  10  
  11      <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
  12      <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
  13  
  14  READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE are "dangerous" permissions.
  15  See documentation for package github.com/p9c/p9/pkg/gel/gio/app/permission for more information.
  16  */
  17  package storage
  18