forked from jitsi/jitsi-meet
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreact-native.config.js
More file actions
29 lines (29 loc) · 853 Bytes
/
react-native.config.js
File metadata and controls
29 lines (29 loc) · 853 Bytes
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
/**
* This is needed because the RN cli incorrectly detects the iOS app path as
* jitsi-meet/ios/app and thus all pod references in the now dynamically generated
* Podfile are wrong.
*/
module.exports = {
// Exclude some dependencies from auto-linking for the lite SDK.
dependencies: {
'@giphy/react-native-sdk': {
platforms: {
ios: {
// Disable auto-linking but keep codegen.
// We need it to generate GiphyReactNativeSDKSpec.
scriptPhases: []
}
}
},
'@react-native-google-signin/google-signin': {
platforms: {
ios: null
}
},
'react-native-calendar-events': {
platforms: {
ios: null
}
}
}
};