You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,10 +10,16 @@ A React Native wrapper for:
10
10
- Android's `Intent.ACTION_GET_CONTENT`
11
11
- Windows `Windows.Storage.Pickers`
12
12
13
+
Requires Android 5.0+ and iOS 10+
14
+
13
15
### Installation
14
16
15
17
```bash
16
18
npm i --save react-native-document-picker
19
+
20
+
OR
21
+
22
+
yarn add react-native-document-picker
17
23
```
18
24
19
25
You need to enable iCloud Documents to access iCloud
@@ -45,7 +51,6 @@ The type or types of documents to allow selection of. May be an array of types a
45
51
- On Android these are MIME types such as `text/plain` or partial MIME types such as `image/*`. See [common MIME types](https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types/Common_types).
46
52
- On iOS these must be Apple "[Uniform Type Identifiers](https://developer.apple.com/library/content/documentation/Miscellaneous/Reference/UTIRef/Articles/System-DeclaredUniformTypeIdentifiers.html)"
47
53
- If `type` is omitted it will be treated as `*/*` or `public.item`.
48
-
- Multiple type strings are not supported on Android before KitKat (API level 19), Jellybean will fall back to `*/*` if you provide an array with more than one value.
0 commit comments