Skip to content

Commit

Permalink
docs(android): Add information about accessing public folders in Andr…
Browse files Browse the repository at this point in the history
…oid 10 (#2951)
  • Loading branch information
jcesarmobile committed May 19, 2020
1 parent 0914c23 commit 6d1778b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions core/src/core-plugin-definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,7 +607,9 @@ export enum FilesystemDirectory {
* On iOS it's the app's documents directory.
* Use this directory to store user-generated content.
* On Android it's the Public Documents folder, so it's accessible from other apps.
* It's not accesible on Android 10 and newer.
* It's not accesible on Android 10 unless the app enables legacy External Storage
* by adding `android:requestLegacyExternalStorage="true"` in the `application` tag
* in the `AndroidManifest.xml`
*/
Documents = 'DOCUMENTS',
/**
Expand Down Expand Up @@ -637,7 +639,9 @@ export enum FilesystemDirectory {
* The external storage directory
* On iOS it will use the Documents directory
* On Android it's the primary shared/external storage directory.
* It's not accesible on Android 10 and newer.
* It's not accesible on Android 10 unless the app enables legacy External Storage
* by adding `android:requestLegacyExternalStorage="true"` in the `application` tag
* in the `AndroidManifest.xml`
*/
ExternalStorage = 'EXTERNAL_STORAGE'
}
Expand Down

0 comments on commit 6d1778b

Please sign in to comment.