|
@@ -14,6 +14,9 @@ end
|
14
|
14
|
target 'JitsiMeet' do
|
15
|
15
|
project 'sdk/sdk.xcodeproj'
|
16
|
16
|
|
|
17
|
+ # React Native and its dependencies
|
|
18
|
+ #
|
|
19
|
+
|
17
|
20
|
pod 'React', :path => '../node_modules/react-native', :subspecs => [
|
18
|
21
|
'Core',
|
19
|
22
|
'CxxBridge',
|
|
@@ -27,35 +30,31 @@ target 'JitsiMeet' do
|
27
|
30
|
'RCTWebSocket',
|
28
|
31
|
]
|
29
|
32
|
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
|
|
33
|
+ pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
|
|
34
|
+ pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
|
|
35
|
+ pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
|
30
|
36
|
|
31
|
|
- pod 'DoubleConversion',
|
32
|
|
- :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
|
33
|
|
- pod 'glog',
|
34
|
|
- :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
|
35
|
|
- pod 'Folly',
|
36
|
|
- :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
|
37
|
|
-
|
38
|
|
- pod 'Amplitude-iOS', '~> 4.0.4'
|
39
|
|
- pod 'ObjectiveDropboxOfficial', '~> 3.9.4'
|
|
37
|
+ # React Native plugins
|
|
38
|
+ #
|
40
|
39
|
|
41
|
|
- pod 'react-native-background-timer',
|
42
|
|
- :path => '../node_modules/react-native-background-timer'
|
43
|
|
- pod 'react-native-calendar-events',
|
44
|
|
- :path => '../node_modules/react-native-calendar-events'
|
45
|
|
- pod 'react-native-fast-image',
|
46
|
|
- :path => '../node_modules/react-native-fast-image'
|
47
|
|
- pod 'react-native-keep-awake',
|
48
|
|
- :path => '../node_modules/react-native-keep-awake'
|
49
|
|
- pod 'react-native-webview',
|
50
|
|
- :path => '../node_modules/react-native-webview'
|
51
|
|
- pod 'BVLinearGradient',
|
52
|
|
- :path => '../node_modules/react-native-linear-gradient'
|
|
40
|
+ pod 'react-native-background-timer', :path => '../node_modules/react-native-background-timer'
|
|
41
|
+ pod 'react-native-calendar-events', :path => '../node_modules/react-native-calendar-events'
|
|
42
|
+ pod 'react-native-fast-image', :path => '../node_modules/react-native-fast-image'
|
|
43
|
+ pod 'react-native-keep-awake', :path => '../node_modules/react-native-keep-awake'
|
|
44
|
+ pod 'react-native-webview', :path => '../node_modules/react-native-webview'
|
53
|
45
|
pod 'react-native-webrtc', :path => '../node_modules/react-native-webrtc'
|
54
|
|
- pod 'RNGoogleSignin',
|
55
|
|
- :path => '../node_modules/react-native-google-signin'
|
|
46
|
+ pod 'BVLinearGradient', :path => '../node_modules/react-native-linear-gradient'
|
|
47
|
+ pod 'RNCAsyncStorage', :path => '../node_modules/@react-native-community/async-storage'
|
|
48
|
+ pod 'RNGoogleSignin', :path => '../node_modules/react-native-google-signin'
|
56
|
49
|
pod 'RNSound', :path => '../node_modules/react-native-sound'
|
57
|
50
|
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
|
58
|
51
|
pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'
|
|
52
|
+
|
|
53
|
+ # Native pod dependencies
|
|
54
|
+ #
|
|
55
|
+
|
|
56
|
+ pod 'Amplitude-iOS', '~> 4.0.4'
|
|
57
|
+ pod 'ObjectiveDropboxOfficial', '~> 3.9.4'
|
59
|
58
|
end
|
60
|
59
|
|
61
|
60
|
post_install do |installer|
|