forked from zulip/zulip-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-native.config.js
33 lines (33 loc) · 967 Bytes
/
react-native.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
* See https://github.com/react-native-community/cli/blob/master/docs/configuration.md.
*
* To print the full config from the React Native CLI, run
* `react-native config`.
*/
module.exports = {
/**
* See https://github.com/react-native-community/cli/blob/master/docs/dependencies.md.
*
* Currently, we only use this to blacklist some native-code
* libraries, per-platform, that we don't want to be linked with
* "autolinking".
*
* For more about "autolinking", see
* https://github.com/react-native-community/cli/blob/master/docs/autolinking.md.
*/
dependencies: {
'react-native-document-picker': {
platforms: {
// iOS file uploads aren't supported yet. See 250cde501.
ios: null,
},
},
'react-native-vector-icons': {
platforms: {
// We're using a setup that doesn't involve linking
// `VectorIconsPackage` on Android.
android: null,
},
},
},
};