-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathreact-native.config.js
More file actions
33 lines (33 loc) · 1.2 KB
/
react-native.config.js
File metadata and controls
33 lines (33 loc) · 1.2 KB
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
module.exports = {
dependencies: {
'react-native-vector-icons': {
platforms: {
android: null, // disable Android platform, other platforms will still autolink
ios: null, // disable iOS platform, other platforms will still autolink
},
},
'react-native-webview': {
platforms: {
android: null, // disable Android platform, other platforms will still autolink
ios: null, // disable iOS platform, other platforms will still autolink
},
},
'react-native-safe-area-context': {
platforms: {
android: null, // disable Android platform, other platforms will still autolink
ios: null, // disable iOS platform, other platforms will still autolink
},
},
'@react-native-community/datetimepicker': {
platforms: {
android: null, // disable Android platform, other platforms will still autolink
ios: null, // disable iOS platform, other platforms will still autolink
},
},
'react-native-kakao-share-link': {
platforms: {
ios: null, // disable iOS platform, other platforms will still autolink
},
},
},
};