reactnative-plugin-appice 1.7.12 → 1.7.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (109) hide show
  1. package/README.md +37 -37
  2. package/android/README.md +14 -14
  3. package/android/build.gradle +151 -151
  4. package/android/gitignore +47 -47
  5. package/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  6. package/android/gradlew +234 -234
  7. package/android/local.properties +8 -8
  8. package/android/src/main/AndroidManifest.xml +153 -153
  9. package/android/src/main/java/com/reactlibrary/AppICEUtils.java +241 -241
  10. package/android/src/main/java/com/reactlibrary/AppIceReactPluginModule.java +748 -748
  11. package/android/src/main/java/com/reactlibrary/AppIceReactPluginPackage.java +28 -28
  12. package/android/src/main/java/com/reactlibrary/CampaignCampsReceiver.java +56 -56
  13. package/android/src/main/java/com/reactlibrary/EnumConstants.java +256 -256
  14. package/android/src/main/java/com/reactlibrary/NotificationEventService.java +59 -59
  15. package/android/src/main/java/com/reactlibrary/StringConstants.java +9 -9
  16. package/example/App.js +292 -273
  17. package/example/Gemfile +6 -6
  18. package/example/__tests__/App-test.js +14 -14
  19. package/example/ancilliary.js +474 -327
  20. package/example/android/.gradle/7.3.3/checksums/checksums.lock +0 -0
  21. package/example/android/.gradle/7.3.3/fileChanges/last-build.bin +0 -0
  22. package/example/android/.gradle/7.3.3/fileHashes/fileHashes.lock +0 -0
  23. package/example/android/.gradle/7.3.3/gc.properties +0 -0
  24. package/example/android/.gradle/vcs-1/gc.properties +0 -0
  25. package/example/android/app/_BUCK +55 -55
  26. package/example/android/app/build.gradle +320 -322
  27. package/example/android/app/build_defs.bzl +19 -19
  28. package/example/android/app/proguard-rules.pro +10 -10
  29. package/example/android/app/src/debug/AndroidManifest.xml +13 -13
  30. package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +73 -73
  31. package/example/android/app/src/main/AndroidManifest.xml +72 -72
  32. package/example/android/app/src/main/java/com/example/MainActivity.java +48 -48
  33. package/example/android/app/src/main/java/com/example/MainApplication.java +91 -95
  34. package/example/android/app/src/main/java/com/example/newarchitecture/MainApplicationReactNativeHost.java +116 -116
  35. package/example/android/app/src/main/java/com/example/newarchitecture/components/MainComponentsRegistry.java +36 -36
  36. package/example/android/app/src/main/java/com/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -48
  37. package/example/android/app/src/main/jni/Android.mk +48 -48
  38. package/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp +24 -24
  39. package/example/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -16
  40. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -45
  41. package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -38
  42. package/example/android/app/src/main/jni/MainComponentsRegistry.cpp +61 -61
  43. package/example/android/app/src/main/jni/MainComponentsRegistry.h +32 -32
  44. package/example/android/app/src/main/jni/OnLoad.cpp +11 -11
  45. package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -36
  46. package/example/android/app/src/main/res/values/strings.xml +3 -3
  47. package/example/android/app/src/main/res/values/styles.xml +9 -9
  48. package/example/android/build.gradle +73 -73
  49. package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -5
  50. package/example/android/gradle.properties +40 -40
  51. package/example/android/gradlew +234 -234
  52. package/example/android/settings.gradle +11 -11
  53. package/example/app.json +3 -3
  54. package/example/babel.config.js +3 -3
  55. package/example/index.js +9 -9
  56. package/example/ios/Podfile +44 -44
  57. package/example/ios/Podfile.lock +561 -561
  58. package/example/ios/_xcode.env +11 -11
  59. package/example/ios/example/AppDelegate.h +8 -8
  60. package/example/ios/example/AppDelegate.mm +174 -174
  61. package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -53
  62. package/example/ios/example/Images.xcassets/Contents.json +6 -6
  63. package/example/ios/example/Info.plist +62 -62
  64. package/example/ios/example/LaunchScreen.storyboard +47 -47
  65. package/example/ios/example/example.entitlements +8 -8
  66. package/example/ios/example/main.m +10 -10
  67. package/example/ios/example.xcodeproj/project.pbxproj +712 -712
  68. package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -88
  69. package/example/ios/example.xcworkspace/contents.xcworkspacedata +10 -10
  70. package/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  71. package/example/ios/exampleTests/Info.plist +24 -24
  72. package/example/ios/exampleTests/exampleTests.m +66 -66
  73. package/example/metro.config.js +17 -17
  74. package/example/package.json +36 -34
  75. package/example/yarn.lock +7176 -0
  76. package/index.js +485 -401
  77. package/ios/AppICEReactEvent.h +23 -23
  78. package/ios/AppICEReactEvent.m +86 -86
  79. package/ios/AppIceReactPlugin.h +59 -59
  80. package/ios/AppIceReactPlugin.m +641 -641
  81. package/ios/AppIceReactPlugin.xcodeproj/project.pbxproj +364 -364
  82. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +4 -4
  83. package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  84. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  85. package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  86. package/ios/AppIceReactPlugin.xcworkspace/contents.xcworkspacedata +10 -10
  87. package/ios/AppIceReactPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
  88. package/ios/AppIceReactPlugin.xcworkspace/xcuserdata/artherajesh.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  89. package/ios/Podfile +10 -10
  90. package/ios/Podfile.lock +3 -3
  91. package/ios/Pods/Manifest.lock +3 -3
  92. package/ios/Pods/Pods.xcodeproj/project.pbxproj +395 -395
  93. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/Pods-AppIceReactPlugin.xcscheme +58 -58
  94. package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +18 -18
  95. package/ios/Pods/Pods.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
  96. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-Info.plist +26 -26
  97. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.markdown +3 -3
  98. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.plist +29 -29
  99. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-dummy.m +5 -5
  100. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-umbrella.h +16 -16
  101. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig +6 -6
  102. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.modulemap +6 -6
  103. package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig +6 -6
  104. package/package.json +41 -40
  105. package/reactnative-plugin-appice.podspec +30 -30
  106. package/example/HelloWorldApp.js +0 -483
  107. package/example/android/app/google-services.json +0 -275
  108. package/example/android/local.properties +0 -8
  109. package/example/package-lock.json +0 -16722
@@ -1,561 +1,561 @@
1
- PODS:
2
- - AppICE-IOS-SDK (1.7.36)
3
- - boost (1.76.0)
4
- - CocoaAsyncSocket (7.6.5)
5
- - DoubleConversion (1.1.6)
6
- - FBLazyVector (0.69.4)
7
- - FBReactNativeSpec (0.69.4):
8
- - RCT-Folly (= 2021.06.28.00-v2)
9
- - RCTRequired (= 0.69.4)
10
- - RCTTypeSafety (= 0.69.4)
11
- - React-Core (= 0.69.4)
12
- - React-jsi (= 0.69.4)
13
- - ReactCommon/turbomodule/core (= 0.69.4)
14
- - Flipper (0.125.0):
15
- - Flipper-Folly (~> 2.6)
16
- - Flipper-RSocket (~> 1.4)
17
- - Flipper-Boost-iOSX (1.76.0.1.11)
18
- - Flipper-DoubleConversion (3.2.0.1)
19
- - Flipper-Fmt (7.1.7)
20
- - Flipper-Folly (2.6.10):
21
- - Flipper-Boost-iOSX
22
- - Flipper-DoubleConversion
23
- - Flipper-Fmt (= 7.1.7)
24
- - Flipper-Glog
25
- - libevent (~> 2.1.12)
26
- - OpenSSL-Universal (= 1.1.1100)
27
- - Flipper-Glog (0.5.0.5)
28
- - Flipper-PeerTalk (0.0.4)
29
- - Flipper-RSocket (1.4.3):
30
- - Flipper-Folly (~> 2.6)
31
- - FlipperKit (0.125.0):
32
- - FlipperKit/Core (= 0.125.0)
33
- - FlipperKit/Core (0.125.0):
34
- - Flipper (~> 0.125.0)
35
- - FlipperKit/CppBridge
36
- - FlipperKit/FBCxxFollyDynamicConvert
37
- - FlipperKit/FBDefines
38
- - FlipperKit/FKPortForwarding
39
- - SocketRocket (~> 0.6.0)
40
- - FlipperKit/CppBridge (0.125.0):
41
- - Flipper (~> 0.125.0)
42
- - FlipperKit/FBCxxFollyDynamicConvert (0.125.0):
43
- - Flipper-Folly (~> 2.6)
44
- - FlipperKit/FBDefines (0.125.0)
45
- - FlipperKit/FKPortForwarding (0.125.0):
46
- - CocoaAsyncSocket (~> 7.6)
47
- - Flipper-PeerTalk (~> 0.0.4)
48
- - FlipperKit/FlipperKitHighlightOverlay (0.125.0)
49
- - FlipperKit/FlipperKitLayoutHelpers (0.125.0):
50
- - FlipperKit/Core
51
- - FlipperKit/FlipperKitHighlightOverlay
52
- - FlipperKit/FlipperKitLayoutTextSearchable
53
- - FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0):
54
- - FlipperKit/Core
55
- - FlipperKit/FlipperKitHighlightOverlay
56
- - FlipperKit/FlipperKitLayoutHelpers
57
- - YogaKit (~> 1.18)
58
- - FlipperKit/FlipperKitLayoutPlugin (0.125.0):
59
- - FlipperKit/Core
60
- - FlipperKit/FlipperKitHighlightOverlay
61
- - FlipperKit/FlipperKitLayoutHelpers
62
- - FlipperKit/FlipperKitLayoutIOSDescriptors
63
- - FlipperKit/FlipperKitLayoutTextSearchable
64
- - YogaKit (~> 1.18)
65
- - FlipperKit/FlipperKitLayoutTextSearchable (0.125.0)
66
- - FlipperKit/FlipperKitNetworkPlugin (0.125.0):
67
- - FlipperKit/Core
68
- - FlipperKit/FlipperKitReactPlugin (0.125.0):
69
- - FlipperKit/Core
70
- - FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0):
71
- - FlipperKit/Core
72
- - FlipperKit/SKIOSNetworkPlugin (0.125.0):
73
- - FlipperKit/Core
74
- - FlipperKit/FlipperKitNetworkPlugin
75
- - fmt (6.2.1)
76
- - glog (0.3.5)
77
- - libevent (2.1.12)
78
- - OpenSSL-Universal (1.1.1100)
79
- - RCT-Folly (2021.06.28.00-v2):
80
- - boost
81
- - DoubleConversion
82
- - fmt (~> 6.2.1)
83
- - glog
84
- - RCT-Folly/Default (= 2021.06.28.00-v2)
85
- - RCT-Folly/Default (2021.06.28.00-v2):
86
- - boost
87
- - DoubleConversion
88
- - fmt (~> 6.2.1)
89
- - glog
90
- - RCTRequired (0.69.4)
91
- - RCTTypeSafety (0.69.4):
92
- - FBLazyVector (= 0.69.4)
93
- - RCTRequired (= 0.69.4)
94
- - React-Core (= 0.69.4)
95
- - React (0.69.4):
96
- - React-Core (= 0.69.4)
97
- - React-Core/DevSupport (= 0.69.4)
98
- - React-Core/RCTWebSocket (= 0.69.4)
99
- - React-RCTActionSheet (= 0.69.4)
100
- - React-RCTAnimation (= 0.69.4)
101
- - React-RCTBlob (= 0.69.4)
102
- - React-RCTImage (= 0.69.4)
103
- - React-RCTLinking (= 0.69.4)
104
- - React-RCTNetwork (= 0.69.4)
105
- - React-RCTSettings (= 0.69.4)
106
- - React-RCTText (= 0.69.4)
107
- - React-RCTVibration (= 0.69.4)
108
- - React-bridging (0.69.4):
109
- - RCT-Folly (= 2021.06.28.00-v2)
110
- - React-jsi (= 0.69.4)
111
- - React-callinvoker (0.69.4)
112
- - React-Codegen (0.69.4):
113
- - FBReactNativeSpec (= 0.69.4)
114
- - RCT-Folly (= 2021.06.28.00-v2)
115
- - RCTRequired (= 0.69.4)
116
- - RCTTypeSafety (= 0.69.4)
117
- - React-Core (= 0.69.4)
118
- - React-jsi (= 0.69.4)
119
- - React-jsiexecutor (= 0.69.4)
120
- - ReactCommon/turbomodule/core (= 0.69.4)
121
- - React-Core (0.69.4):
122
- - glog
123
- - RCT-Folly (= 2021.06.28.00-v2)
124
- - React-Core/Default (= 0.69.4)
125
- - React-cxxreact (= 0.69.4)
126
- - React-jsi (= 0.69.4)
127
- - React-jsiexecutor (= 0.69.4)
128
- - React-perflogger (= 0.69.4)
129
- - Yoga
130
- - React-Core/CoreModulesHeaders (0.69.4):
131
- - glog
132
- - RCT-Folly (= 2021.06.28.00-v2)
133
- - React-Core/Default
134
- - React-cxxreact (= 0.69.4)
135
- - React-jsi (= 0.69.4)
136
- - React-jsiexecutor (= 0.69.4)
137
- - React-perflogger (= 0.69.4)
138
- - Yoga
139
- - React-Core/Default (0.69.4):
140
- - glog
141
- - RCT-Folly (= 2021.06.28.00-v2)
142
- - React-cxxreact (= 0.69.4)
143
- - React-jsi (= 0.69.4)
144
- - React-jsiexecutor (= 0.69.4)
145
- - React-perflogger (= 0.69.4)
146
- - Yoga
147
- - React-Core/DevSupport (0.69.4):
148
- - glog
149
- - RCT-Folly (= 2021.06.28.00-v2)
150
- - React-Core/Default (= 0.69.4)
151
- - React-Core/RCTWebSocket (= 0.69.4)
152
- - React-cxxreact (= 0.69.4)
153
- - React-jsi (= 0.69.4)
154
- - React-jsiexecutor (= 0.69.4)
155
- - React-jsinspector (= 0.69.4)
156
- - React-perflogger (= 0.69.4)
157
- - Yoga
158
- - React-Core/RCTActionSheetHeaders (0.69.4):
159
- - glog
160
- - RCT-Folly (= 2021.06.28.00-v2)
161
- - React-Core/Default
162
- - React-cxxreact (= 0.69.4)
163
- - React-jsi (= 0.69.4)
164
- - React-jsiexecutor (= 0.69.4)
165
- - React-perflogger (= 0.69.4)
166
- - Yoga
167
- - React-Core/RCTAnimationHeaders (0.69.4):
168
- - glog
169
- - RCT-Folly (= 2021.06.28.00-v2)
170
- - React-Core/Default
171
- - React-cxxreact (= 0.69.4)
172
- - React-jsi (= 0.69.4)
173
- - React-jsiexecutor (= 0.69.4)
174
- - React-perflogger (= 0.69.4)
175
- - Yoga
176
- - React-Core/RCTBlobHeaders (0.69.4):
177
- - glog
178
- - RCT-Folly (= 2021.06.28.00-v2)
179
- - React-Core/Default
180
- - React-cxxreact (= 0.69.4)
181
- - React-jsi (= 0.69.4)
182
- - React-jsiexecutor (= 0.69.4)
183
- - React-perflogger (= 0.69.4)
184
- - Yoga
185
- - React-Core/RCTImageHeaders (0.69.4):
186
- - glog
187
- - RCT-Folly (= 2021.06.28.00-v2)
188
- - React-Core/Default
189
- - React-cxxreact (= 0.69.4)
190
- - React-jsi (= 0.69.4)
191
- - React-jsiexecutor (= 0.69.4)
192
- - React-perflogger (= 0.69.4)
193
- - Yoga
194
- - React-Core/RCTLinkingHeaders (0.69.4):
195
- - glog
196
- - RCT-Folly (= 2021.06.28.00-v2)
197
- - React-Core/Default
198
- - React-cxxreact (= 0.69.4)
199
- - React-jsi (= 0.69.4)
200
- - React-jsiexecutor (= 0.69.4)
201
- - React-perflogger (= 0.69.4)
202
- - Yoga
203
- - React-Core/RCTNetworkHeaders (0.69.4):
204
- - glog
205
- - RCT-Folly (= 2021.06.28.00-v2)
206
- - React-Core/Default
207
- - React-cxxreact (= 0.69.4)
208
- - React-jsi (= 0.69.4)
209
- - React-jsiexecutor (= 0.69.4)
210
- - React-perflogger (= 0.69.4)
211
- - Yoga
212
- - React-Core/RCTSettingsHeaders (0.69.4):
213
- - glog
214
- - RCT-Folly (= 2021.06.28.00-v2)
215
- - React-Core/Default
216
- - React-cxxreact (= 0.69.4)
217
- - React-jsi (= 0.69.4)
218
- - React-jsiexecutor (= 0.69.4)
219
- - React-perflogger (= 0.69.4)
220
- - Yoga
221
- - React-Core/RCTTextHeaders (0.69.4):
222
- - glog
223
- - RCT-Folly (= 2021.06.28.00-v2)
224
- - React-Core/Default
225
- - React-cxxreact (= 0.69.4)
226
- - React-jsi (= 0.69.4)
227
- - React-jsiexecutor (= 0.69.4)
228
- - React-perflogger (= 0.69.4)
229
- - Yoga
230
- - React-Core/RCTVibrationHeaders (0.69.4):
231
- - glog
232
- - RCT-Folly (= 2021.06.28.00-v2)
233
- - React-Core/Default
234
- - React-cxxreact (= 0.69.4)
235
- - React-jsi (= 0.69.4)
236
- - React-jsiexecutor (= 0.69.4)
237
- - React-perflogger (= 0.69.4)
238
- - Yoga
239
- - React-Core/RCTWebSocket (0.69.4):
240
- - glog
241
- - RCT-Folly (= 2021.06.28.00-v2)
242
- - React-Core/Default (= 0.69.4)
243
- - React-cxxreact (= 0.69.4)
244
- - React-jsi (= 0.69.4)
245
- - React-jsiexecutor (= 0.69.4)
246
- - React-perflogger (= 0.69.4)
247
- - Yoga
248
- - React-CoreModules (0.69.4):
249
- - RCT-Folly (= 2021.06.28.00-v2)
250
- - RCTTypeSafety (= 0.69.4)
251
- - React-Codegen (= 0.69.4)
252
- - React-Core/CoreModulesHeaders (= 0.69.4)
253
- - React-jsi (= 0.69.4)
254
- - React-RCTImage (= 0.69.4)
255
- - ReactCommon/turbomodule/core (= 0.69.4)
256
- - React-cxxreact (0.69.4):
257
- - boost (= 1.76.0)
258
- - DoubleConversion
259
- - glog
260
- - RCT-Folly (= 2021.06.28.00-v2)
261
- - React-callinvoker (= 0.69.4)
262
- - React-jsi (= 0.69.4)
263
- - React-jsinspector (= 0.69.4)
264
- - React-logger (= 0.69.4)
265
- - React-perflogger (= 0.69.4)
266
- - React-runtimeexecutor (= 0.69.4)
267
- - React-jsi (0.69.4):
268
- - boost (= 1.76.0)
269
- - DoubleConversion
270
- - glog
271
- - RCT-Folly (= 2021.06.28.00-v2)
272
- - React-jsi/Default (= 0.69.4)
273
- - React-jsi/Default (0.69.4):
274
- - boost (= 1.76.0)
275
- - DoubleConversion
276
- - glog
277
- - RCT-Folly (= 2021.06.28.00-v2)
278
- - React-jsiexecutor (0.69.4):
279
- - DoubleConversion
280
- - glog
281
- - RCT-Folly (= 2021.06.28.00-v2)
282
- - React-cxxreact (= 0.69.4)
283
- - React-jsi (= 0.69.4)
284
- - React-perflogger (= 0.69.4)
285
- - React-jsinspector (0.69.4)
286
- - React-logger (0.69.4):
287
- - glog
288
- - React-perflogger (0.69.4)
289
- - React-RCTActionSheet (0.69.4):
290
- - React-Core/RCTActionSheetHeaders (= 0.69.4)
291
- - React-RCTAnimation (0.69.4):
292
- - RCT-Folly (= 2021.06.28.00-v2)
293
- - RCTTypeSafety (= 0.69.4)
294
- - React-Codegen (= 0.69.4)
295
- - React-Core/RCTAnimationHeaders (= 0.69.4)
296
- - React-jsi (= 0.69.4)
297
- - ReactCommon/turbomodule/core (= 0.69.4)
298
- - React-RCTBlob (0.69.4):
299
- - RCT-Folly (= 2021.06.28.00-v2)
300
- - React-Codegen (= 0.69.4)
301
- - React-Core/RCTBlobHeaders (= 0.69.4)
302
- - React-Core/RCTWebSocket (= 0.69.4)
303
- - React-jsi (= 0.69.4)
304
- - React-RCTNetwork (= 0.69.4)
305
- - ReactCommon/turbomodule/core (= 0.69.4)
306
- - React-RCTImage (0.69.4):
307
- - RCT-Folly (= 2021.06.28.00-v2)
308
- - RCTTypeSafety (= 0.69.4)
309
- - React-Codegen (= 0.69.4)
310
- - React-Core/RCTImageHeaders (= 0.69.4)
311
- - React-jsi (= 0.69.4)
312
- - React-RCTNetwork (= 0.69.4)
313
- - ReactCommon/turbomodule/core (= 0.69.4)
314
- - React-RCTLinking (0.69.4):
315
- - React-Codegen (= 0.69.4)
316
- - React-Core/RCTLinkingHeaders (= 0.69.4)
317
- - React-jsi (= 0.69.4)
318
- - ReactCommon/turbomodule/core (= 0.69.4)
319
- - React-RCTNetwork (0.69.4):
320
- - RCT-Folly (= 2021.06.28.00-v2)
321
- - RCTTypeSafety (= 0.69.4)
322
- - React-Codegen (= 0.69.4)
323
- - React-Core/RCTNetworkHeaders (= 0.69.4)
324
- - React-jsi (= 0.69.4)
325
- - ReactCommon/turbomodule/core (= 0.69.4)
326
- - React-RCTSettings (0.69.4):
327
- - RCT-Folly (= 2021.06.28.00-v2)
328
- - RCTTypeSafety (= 0.69.4)
329
- - React-Codegen (= 0.69.4)
330
- - React-Core/RCTSettingsHeaders (= 0.69.4)
331
- - React-jsi (= 0.69.4)
332
- - ReactCommon/turbomodule/core (= 0.69.4)
333
- - React-RCTText (0.69.4):
334
- - React-Core/RCTTextHeaders (= 0.69.4)
335
- - React-RCTVibration (0.69.4):
336
- - RCT-Folly (= 2021.06.28.00-v2)
337
- - React-Codegen (= 0.69.4)
338
- - React-Core/RCTVibrationHeaders (= 0.69.4)
339
- - React-jsi (= 0.69.4)
340
- - ReactCommon/turbomodule/core (= 0.69.4)
341
- - React-runtimeexecutor (0.69.4):
342
- - React-jsi (= 0.69.4)
343
- - ReactCommon/turbomodule/core (0.69.4):
344
- - DoubleConversion
345
- - glog
346
- - RCT-Folly (= 2021.06.28.00-v2)
347
- - React-bridging (= 0.69.4)
348
- - React-callinvoker (= 0.69.4)
349
- - React-Core (= 0.69.4)
350
- - React-cxxreact (= 0.69.4)
351
- - React-jsi (= 0.69.4)
352
- - React-logger (= 0.69.4)
353
- - React-perflogger (= 0.69.4)
354
- - reactnative-plugin-appice (1.4.1):
355
- - AppICE-IOS-SDK
356
- - React
357
- - SocketRocket (0.6.0)
358
- - Yoga (1.14.0)
359
- - YogaKit (1.18.1):
360
- - Yoga (~> 1.14)
361
-
362
- DEPENDENCIES:
363
- - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
364
- - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
365
- - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
366
- - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
367
- - Flipper (= 0.125.0)
368
- - Flipper-Boost-iOSX (= 1.76.0.1.11)
369
- - Flipper-DoubleConversion (= 3.2.0.1)
370
- - Flipper-Fmt (= 7.1.7)
371
- - Flipper-Folly (= 2.6.10)
372
- - Flipper-Glog (= 0.5.0.5)
373
- - Flipper-PeerTalk (= 0.0.4)
374
- - Flipper-RSocket (= 1.4.3)
375
- - FlipperKit (= 0.125.0)
376
- - FlipperKit/Core (= 0.125.0)
377
- - FlipperKit/CppBridge (= 0.125.0)
378
- - FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0)
379
- - FlipperKit/FBDefines (= 0.125.0)
380
- - FlipperKit/FKPortForwarding (= 0.125.0)
381
- - FlipperKit/FlipperKitHighlightOverlay (= 0.125.0)
382
- - FlipperKit/FlipperKitLayoutPlugin (= 0.125.0)
383
- - FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0)
384
- - FlipperKit/FlipperKitNetworkPlugin (= 0.125.0)
385
- - FlipperKit/FlipperKitReactPlugin (= 0.125.0)
386
- - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0)
387
- - FlipperKit/SKIOSNetworkPlugin (= 0.125.0)
388
- - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
389
- - OpenSSL-Universal (= 1.1.1100)
390
- - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
391
- - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
392
- - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
393
- - React (from `../node_modules/react-native/`)
394
- - React-bridging (from `../node_modules/react-native/ReactCommon`)
395
- - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
396
- - React-Codegen (from `build/generated/ios`)
397
- - React-Core (from `../node_modules/react-native/`)
398
- - React-Core/DevSupport (from `../node_modules/react-native/`)
399
- - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
400
- - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
401
- - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
402
- - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
403
- - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
404
- - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
405
- - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
406
- - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
407
- - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
408
- - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
409
- - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
410
- - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
411
- - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
412
- - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
413
- - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
414
- - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
415
- - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
416
- - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
417
- - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
418
- - reactnative-plugin-appice (from `../node_modules/reactnative-plugin-appice`)
419
- - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
420
-
421
- SPEC REPOS:
422
- trunk:
423
- - AppICE-IOS-SDK
424
- - CocoaAsyncSocket
425
- - Flipper
426
- - Flipper-Boost-iOSX
427
- - Flipper-DoubleConversion
428
- - Flipper-Fmt
429
- - Flipper-Folly
430
- - Flipper-Glog
431
- - Flipper-PeerTalk
432
- - Flipper-RSocket
433
- - FlipperKit
434
- - fmt
435
- - libevent
436
- - OpenSSL-Universal
437
- - SocketRocket
438
- - YogaKit
439
-
440
- EXTERNAL SOURCES:
441
- boost:
442
- :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
443
- DoubleConversion:
444
- :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
445
- FBLazyVector:
446
- :path: "../node_modules/react-native/Libraries/FBLazyVector"
447
- FBReactNativeSpec:
448
- :path: "../node_modules/react-native/React/FBReactNativeSpec"
449
- glog:
450
- :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
451
- RCT-Folly:
452
- :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
453
- RCTRequired:
454
- :path: "../node_modules/react-native/Libraries/RCTRequired"
455
- RCTTypeSafety:
456
- :path: "../node_modules/react-native/Libraries/TypeSafety"
457
- React:
458
- :path: "../node_modules/react-native/"
459
- React-bridging:
460
- :path: "../node_modules/react-native/ReactCommon"
461
- React-callinvoker:
462
- :path: "../node_modules/react-native/ReactCommon/callinvoker"
463
- React-Codegen:
464
- :path: build/generated/ios
465
- React-Core:
466
- :path: "../node_modules/react-native/"
467
- React-CoreModules:
468
- :path: "../node_modules/react-native/React/CoreModules"
469
- React-cxxreact:
470
- :path: "../node_modules/react-native/ReactCommon/cxxreact"
471
- React-jsi:
472
- :path: "../node_modules/react-native/ReactCommon/jsi"
473
- React-jsiexecutor:
474
- :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
475
- React-jsinspector:
476
- :path: "../node_modules/react-native/ReactCommon/jsinspector"
477
- React-logger:
478
- :path: "../node_modules/react-native/ReactCommon/logger"
479
- React-perflogger:
480
- :path: "../node_modules/react-native/ReactCommon/reactperflogger"
481
- React-RCTActionSheet:
482
- :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
483
- React-RCTAnimation:
484
- :path: "../node_modules/react-native/Libraries/NativeAnimation"
485
- React-RCTBlob:
486
- :path: "../node_modules/react-native/Libraries/Blob"
487
- React-RCTImage:
488
- :path: "../node_modules/react-native/Libraries/Image"
489
- React-RCTLinking:
490
- :path: "../node_modules/react-native/Libraries/LinkingIOS"
491
- React-RCTNetwork:
492
- :path: "../node_modules/react-native/Libraries/Network"
493
- React-RCTSettings:
494
- :path: "../node_modules/react-native/Libraries/Settings"
495
- React-RCTText:
496
- :path: "../node_modules/react-native/Libraries/Text"
497
- React-RCTVibration:
498
- :path: "../node_modules/react-native/Libraries/Vibration"
499
- React-runtimeexecutor:
500
- :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
501
- ReactCommon:
502
- :path: "../node_modules/react-native/ReactCommon"
503
- reactnative-plugin-appice:
504
- :path: "../node_modules/reactnative-plugin-appice"
505
- Yoga:
506
- :path: "../node_modules/react-native/ReactCommon/yoga"
507
-
508
- SPEC CHECKSUMS:
509
- AppICE-IOS-SDK: caa86e524469adbc3557f5d110314fe3d9cfd39b
510
- boost: a7c83b31436843459a1961bfd74b96033dc77234
511
- CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
512
- DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
513
- FBLazyVector: c71b8c429a8af2aff1013934a7152e9d9d0c937d
514
- FBReactNativeSpec: cb0df4f0084281b394f76bb9b4d1d9540f35963f
515
- Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0
516
- Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
517
- Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
518
- Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
519
- Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
520
- Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
521
- Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
522
- Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
523
- FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86
524
- fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
525
- glog: 3d02b25ca00c2d456734d0bcff864cbc62f6ae1a
526
- libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
527
- OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
528
- RCT-Folly: b9d9fe1fc70114b751c076104e52f3b1b5e5a95a
529
- RCTRequired: bd9d2ab0fda10171fcbcf9ba61a7df4dc15a28f4
530
- RCTTypeSafety: e44e139bf6ec8042db396201834fc2372f6a21cd
531
- React: 482cd1ba23c471be1aed3800180be2427418d7be
532
- React-bridging: c2ea4fed6fe4ed27c12fd71e88b5d5d3da107fde
533
- React-callinvoker: d4d1f98163fb5e35545e910415ef6c04796bb188
534
- React-Codegen: ff35fb9c7f6ec2ed34fb6de2e1099d88dfb25f2f
535
- React-Core: 4d3443a45b67c71d74d7243ddde9569d1e4f4fad
536
- React-CoreModules: 70be25399366b5632ab18ecf6fe444a8165a7bea
537
- React-cxxreact: 822d3794fc0bf206f4691592f90e086dd4f92228
538
- React-jsi: ffa51cbc9a78cc156cf61f79ed52ecb76dc6013b
539
- React-jsiexecutor: a27badbbdbc0ff781813370736a2d1c7261181d4
540
- React-jsinspector: 8a3d3f5dcd23a91e8c80b1bf0e96902cd1dca999
541
- React-logger: 1088859f145b8f6dd0d3ed051a647ef0e3e80fad
542
- React-perflogger: cb386fd44c97ec7f8199c04c12b22066b0f2e1e0
543
- React-RCTActionSheet: f803a85e46cf5b4066c2ac5e122447f918e9c6e5
544
- React-RCTAnimation: 19c80fa950ccce7f4db76a2a7f2cf79baae07fc7
545
- React-RCTBlob: f36ab97e2d515c36df14a1571e50056be80413d5
546
- React-RCTImage: 2c8f0a329a116248e82f8972ffe806e47c6d1cfa
547
- React-RCTLinking: 670f0223075aff33be3b89714f1da4f5343fc4af
548
- React-RCTNetwork: 09385b73f4ff1f46bd5d749540fb33f69a7e5908
549
- React-RCTSettings: 33b12d3ac7a1f2eba069ec7bd1b84345263b3bbe
550
- React-RCTText: a1a3ea902403bd9ae4cf6f7960551dc1d25711b5
551
- React-RCTVibration: 9adb4a3cbb598d1bbd46a05256f445e4b8c70603
552
- React-runtimeexecutor: 61ee22a8cdf8b6bb2a7fb7b4ba2cc763e5285196
553
- ReactCommon: 8f67bd7e0a6afade0f20718f859dc8c2275f2e83
554
- reactnative-plugin-appice: d5da161b3d4d07b9397124e83f52803af5ad75f9
555
- SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
556
- Yoga: ff994563b2fd98c982ca58e8cd9db2cdaf4dda74
557
- YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
558
-
559
- PODFILE CHECKSUM: 93ffad17d739b74517a1b91e0eb7f9ef64547705
560
-
561
- COCOAPODS: 1.11.3
1
+ PODS:
2
+ - AppICE-IOS-SDK (1.7.36)
3
+ - boost (1.76.0)
4
+ - CocoaAsyncSocket (7.6.5)
5
+ - DoubleConversion (1.1.6)
6
+ - FBLazyVector (0.69.4)
7
+ - FBReactNativeSpec (0.69.4):
8
+ - RCT-Folly (= 2021.06.28.00-v2)
9
+ - RCTRequired (= 0.69.4)
10
+ - RCTTypeSafety (= 0.69.4)
11
+ - React-Core (= 0.69.4)
12
+ - React-jsi (= 0.69.4)
13
+ - ReactCommon/turbomodule/core (= 0.69.4)
14
+ - Flipper (0.125.0):
15
+ - Flipper-Folly (~> 2.6)
16
+ - Flipper-RSocket (~> 1.4)
17
+ - Flipper-Boost-iOSX (1.76.0.1.11)
18
+ - Flipper-DoubleConversion (3.2.0.1)
19
+ - Flipper-Fmt (7.1.7)
20
+ - Flipper-Folly (2.6.10):
21
+ - Flipper-Boost-iOSX
22
+ - Flipper-DoubleConversion
23
+ - Flipper-Fmt (= 7.1.7)
24
+ - Flipper-Glog
25
+ - libevent (~> 2.1.12)
26
+ - OpenSSL-Universal (= 1.1.1100)
27
+ - Flipper-Glog (0.5.0.5)
28
+ - Flipper-PeerTalk (0.0.4)
29
+ - Flipper-RSocket (1.4.3):
30
+ - Flipper-Folly (~> 2.6)
31
+ - FlipperKit (0.125.0):
32
+ - FlipperKit/Core (= 0.125.0)
33
+ - FlipperKit/Core (0.125.0):
34
+ - Flipper (~> 0.125.0)
35
+ - FlipperKit/CppBridge
36
+ - FlipperKit/FBCxxFollyDynamicConvert
37
+ - FlipperKit/FBDefines
38
+ - FlipperKit/FKPortForwarding
39
+ - SocketRocket (~> 0.6.0)
40
+ - FlipperKit/CppBridge (0.125.0):
41
+ - Flipper (~> 0.125.0)
42
+ - FlipperKit/FBCxxFollyDynamicConvert (0.125.0):
43
+ - Flipper-Folly (~> 2.6)
44
+ - FlipperKit/FBDefines (0.125.0)
45
+ - FlipperKit/FKPortForwarding (0.125.0):
46
+ - CocoaAsyncSocket (~> 7.6)
47
+ - Flipper-PeerTalk (~> 0.0.4)
48
+ - FlipperKit/FlipperKitHighlightOverlay (0.125.0)
49
+ - FlipperKit/FlipperKitLayoutHelpers (0.125.0):
50
+ - FlipperKit/Core
51
+ - FlipperKit/FlipperKitHighlightOverlay
52
+ - FlipperKit/FlipperKitLayoutTextSearchable
53
+ - FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0):
54
+ - FlipperKit/Core
55
+ - FlipperKit/FlipperKitHighlightOverlay
56
+ - FlipperKit/FlipperKitLayoutHelpers
57
+ - YogaKit (~> 1.18)
58
+ - FlipperKit/FlipperKitLayoutPlugin (0.125.0):
59
+ - FlipperKit/Core
60
+ - FlipperKit/FlipperKitHighlightOverlay
61
+ - FlipperKit/FlipperKitLayoutHelpers
62
+ - FlipperKit/FlipperKitLayoutIOSDescriptors
63
+ - FlipperKit/FlipperKitLayoutTextSearchable
64
+ - YogaKit (~> 1.18)
65
+ - FlipperKit/FlipperKitLayoutTextSearchable (0.125.0)
66
+ - FlipperKit/FlipperKitNetworkPlugin (0.125.0):
67
+ - FlipperKit/Core
68
+ - FlipperKit/FlipperKitReactPlugin (0.125.0):
69
+ - FlipperKit/Core
70
+ - FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0):
71
+ - FlipperKit/Core
72
+ - FlipperKit/SKIOSNetworkPlugin (0.125.0):
73
+ - FlipperKit/Core
74
+ - FlipperKit/FlipperKitNetworkPlugin
75
+ - fmt (6.2.1)
76
+ - glog (0.3.5)
77
+ - libevent (2.1.12)
78
+ - OpenSSL-Universal (1.1.1100)
79
+ - RCT-Folly (2021.06.28.00-v2):
80
+ - boost
81
+ - DoubleConversion
82
+ - fmt (~> 6.2.1)
83
+ - glog
84
+ - RCT-Folly/Default (= 2021.06.28.00-v2)
85
+ - RCT-Folly/Default (2021.06.28.00-v2):
86
+ - boost
87
+ - DoubleConversion
88
+ - fmt (~> 6.2.1)
89
+ - glog
90
+ - RCTRequired (0.69.4)
91
+ - RCTTypeSafety (0.69.4):
92
+ - FBLazyVector (= 0.69.4)
93
+ - RCTRequired (= 0.69.4)
94
+ - React-Core (= 0.69.4)
95
+ - React (0.69.4):
96
+ - React-Core (= 0.69.4)
97
+ - React-Core/DevSupport (= 0.69.4)
98
+ - React-Core/RCTWebSocket (= 0.69.4)
99
+ - React-RCTActionSheet (= 0.69.4)
100
+ - React-RCTAnimation (= 0.69.4)
101
+ - React-RCTBlob (= 0.69.4)
102
+ - React-RCTImage (= 0.69.4)
103
+ - React-RCTLinking (= 0.69.4)
104
+ - React-RCTNetwork (= 0.69.4)
105
+ - React-RCTSettings (= 0.69.4)
106
+ - React-RCTText (= 0.69.4)
107
+ - React-RCTVibration (= 0.69.4)
108
+ - React-bridging (0.69.4):
109
+ - RCT-Folly (= 2021.06.28.00-v2)
110
+ - React-jsi (= 0.69.4)
111
+ - React-callinvoker (0.69.4)
112
+ - React-Codegen (0.69.4):
113
+ - FBReactNativeSpec (= 0.69.4)
114
+ - RCT-Folly (= 2021.06.28.00-v2)
115
+ - RCTRequired (= 0.69.4)
116
+ - RCTTypeSafety (= 0.69.4)
117
+ - React-Core (= 0.69.4)
118
+ - React-jsi (= 0.69.4)
119
+ - React-jsiexecutor (= 0.69.4)
120
+ - ReactCommon/turbomodule/core (= 0.69.4)
121
+ - React-Core (0.69.4):
122
+ - glog
123
+ - RCT-Folly (= 2021.06.28.00-v2)
124
+ - React-Core/Default (= 0.69.4)
125
+ - React-cxxreact (= 0.69.4)
126
+ - React-jsi (= 0.69.4)
127
+ - React-jsiexecutor (= 0.69.4)
128
+ - React-perflogger (= 0.69.4)
129
+ - Yoga
130
+ - React-Core/CoreModulesHeaders (0.69.4):
131
+ - glog
132
+ - RCT-Folly (= 2021.06.28.00-v2)
133
+ - React-Core/Default
134
+ - React-cxxreact (= 0.69.4)
135
+ - React-jsi (= 0.69.4)
136
+ - React-jsiexecutor (= 0.69.4)
137
+ - React-perflogger (= 0.69.4)
138
+ - Yoga
139
+ - React-Core/Default (0.69.4):
140
+ - glog
141
+ - RCT-Folly (= 2021.06.28.00-v2)
142
+ - React-cxxreact (= 0.69.4)
143
+ - React-jsi (= 0.69.4)
144
+ - React-jsiexecutor (= 0.69.4)
145
+ - React-perflogger (= 0.69.4)
146
+ - Yoga
147
+ - React-Core/DevSupport (0.69.4):
148
+ - glog
149
+ - RCT-Folly (= 2021.06.28.00-v2)
150
+ - React-Core/Default (= 0.69.4)
151
+ - React-Core/RCTWebSocket (= 0.69.4)
152
+ - React-cxxreact (= 0.69.4)
153
+ - React-jsi (= 0.69.4)
154
+ - React-jsiexecutor (= 0.69.4)
155
+ - React-jsinspector (= 0.69.4)
156
+ - React-perflogger (= 0.69.4)
157
+ - Yoga
158
+ - React-Core/RCTActionSheetHeaders (0.69.4):
159
+ - glog
160
+ - RCT-Folly (= 2021.06.28.00-v2)
161
+ - React-Core/Default
162
+ - React-cxxreact (= 0.69.4)
163
+ - React-jsi (= 0.69.4)
164
+ - React-jsiexecutor (= 0.69.4)
165
+ - React-perflogger (= 0.69.4)
166
+ - Yoga
167
+ - React-Core/RCTAnimationHeaders (0.69.4):
168
+ - glog
169
+ - RCT-Folly (= 2021.06.28.00-v2)
170
+ - React-Core/Default
171
+ - React-cxxreact (= 0.69.4)
172
+ - React-jsi (= 0.69.4)
173
+ - React-jsiexecutor (= 0.69.4)
174
+ - React-perflogger (= 0.69.4)
175
+ - Yoga
176
+ - React-Core/RCTBlobHeaders (0.69.4):
177
+ - glog
178
+ - RCT-Folly (= 2021.06.28.00-v2)
179
+ - React-Core/Default
180
+ - React-cxxreact (= 0.69.4)
181
+ - React-jsi (= 0.69.4)
182
+ - React-jsiexecutor (= 0.69.4)
183
+ - React-perflogger (= 0.69.4)
184
+ - Yoga
185
+ - React-Core/RCTImageHeaders (0.69.4):
186
+ - glog
187
+ - RCT-Folly (= 2021.06.28.00-v2)
188
+ - React-Core/Default
189
+ - React-cxxreact (= 0.69.4)
190
+ - React-jsi (= 0.69.4)
191
+ - React-jsiexecutor (= 0.69.4)
192
+ - React-perflogger (= 0.69.4)
193
+ - Yoga
194
+ - React-Core/RCTLinkingHeaders (0.69.4):
195
+ - glog
196
+ - RCT-Folly (= 2021.06.28.00-v2)
197
+ - React-Core/Default
198
+ - React-cxxreact (= 0.69.4)
199
+ - React-jsi (= 0.69.4)
200
+ - React-jsiexecutor (= 0.69.4)
201
+ - React-perflogger (= 0.69.4)
202
+ - Yoga
203
+ - React-Core/RCTNetworkHeaders (0.69.4):
204
+ - glog
205
+ - RCT-Folly (= 2021.06.28.00-v2)
206
+ - React-Core/Default
207
+ - React-cxxreact (= 0.69.4)
208
+ - React-jsi (= 0.69.4)
209
+ - React-jsiexecutor (= 0.69.4)
210
+ - React-perflogger (= 0.69.4)
211
+ - Yoga
212
+ - React-Core/RCTSettingsHeaders (0.69.4):
213
+ - glog
214
+ - RCT-Folly (= 2021.06.28.00-v2)
215
+ - React-Core/Default
216
+ - React-cxxreact (= 0.69.4)
217
+ - React-jsi (= 0.69.4)
218
+ - React-jsiexecutor (= 0.69.4)
219
+ - React-perflogger (= 0.69.4)
220
+ - Yoga
221
+ - React-Core/RCTTextHeaders (0.69.4):
222
+ - glog
223
+ - RCT-Folly (= 2021.06.28.00-v2)
224
+ - React-Core/Default
225
+ - React-cxxreact (= 0.69.4)
226
+ - React-jsi (= 0.69.4)
227
+ - React-jsiexecutor (= 0.69.4)
228
+ - React-perflogger (= 0.69.4)
229
+ - Yoga
230
+ - React-Core/RCTVibrationHeaders (0.69.4):
231
+ - glog
232
+ - RCT-Folly (= 2021.06.28.00-v2)
233
+ - React-Core/Default
234
+ - React-cxxreact (= 0.69.4)
235
+ - React-jsi (= 0.69.4)
236
+ - React-jsiexecutor (= 0.69.4)
237
+ - React-perflogger (= 0.69.4)
238
+ - Yoga
239
+ - React-Core/RCTWebSocket (0.69.4):
240
+ - glog
241
+ - RCT-Folly (= 2021.06.28.00-v2)
242
+ - React-Core/Default (= 0.69.4)
243
+ - React-cxxreact (= 0.69.4)
244
+ - React-jsi (= 0.69.4)
245
+ - React-jsiexecutor (= 0.69.4)
246
+ - React-perflogger (= 0.69.4)
247
+ - Yoga
248
+ - React-CoreModules (0.69.4):
249
+ - RCT-Folly (= 2021.06.28.00-v2)
250
+ - RCTTypeSafety (= 0.69.4)
251
+ - React-Codegen (= 0.69.4)
252
+ - React-Core/CoreModulesHeaders (= 0.69.4)
253
+ - React-jsi (= 0.69.4)
254
+ - React-RCTImage (= 0.69.4)
255
+ - ReactCommon/turbomodule/core (= 0.69.4)
256
+ - React-cxxreact (0.69.4):
257
+ - boost (= 1.76.0)
258
+ - DoubleConversion
259
+ - glog
260
+ - RCT-Folly (= 2021.06.28.00-v2)
261
+ - React-callinvoker (= 0.69.4)
262
+ - React-jsi (= 0.69.4)
263
+ - React-jsinspector (= 0.69.4)
264
+ - React-logger (= 0.69.4)
265
+ - React-perflogger (= 0.69.4)
266
+ - React-runtimeexecutor (= 0.69.4)
267
+ - React-jsi (0.69.4):
268
+ - boost (= 1.76.0)
269
+ - DoubleConversion
270
+ - glog
271
+ - RCT-Folly (= 2021.06.28.00-v2)
272
+ - React-jsi/Default (= 0.69.4)
273
+ - React-jsi/Default (0.69.4):
274
+ - boost (= 1.76.0)
275
+ - DoubleConversion
276
+ - glog
277
+ - RCT-Folly (= 2021.06.28.00-v2)
278
+ - React-jsiexecutor (0.69.4):
279
+ - DoubleConversion
280
+ - glog
281
+ - RCT-Folly (= 2021.06.28.00-v2)
282
+ - React-cxxreact (= 0.69.4)
283
+ - React-jsi (= 0.69.4)
284
+ - React-perflogger (= 0.69.4)
285
+ - React-jsinspector (0.69.4)
286
+ - React-logger (0.69.4):
287
+ - glog
288
+ - React-perflogger (0.69.4)
289
+ - React-RCTActionSheet (0.69.4):
290
+ - React-Core/RCTActionSheetHeaders (= 0.69.4)
291
+ - React-RCTAnimation (0.69.4):
292
+ - RCT-Folly (= 2021.06.28.00-v2)
293
+ - RCTTypeSafety (= 0.69.4)
294
+ - React-Codegen (= 0.69.4)
295
+ - React-Core/RCTAnimationHeaders (= 0.69.4)
296
+ - React-jsi (= 0.69.4)
297
+ - ReactCommon/turbomodule/core (= 0.69.4)
298
+ - React-RCTBlob (0.69.4):
299
+ - RCT-Folly (= 2021.06.28.00-v2)
300
+ - React-Codegen (= 0.69.4)
301
+ - React-Core/RCTBlobHeaders (= 0.69.4)
302
+ - React-Core/RCTWebSocket (= 0.69.4)
303
+ - React-jsi (= 0.69.4)
304
+ - React-RCTNetwork (= 0.69.4)
305
+ - ReactCommon/turbomodule/core (= 0.69.4)
306
+ - React-RCTImage (0.69.4):
307
+ - RCT-Folly (= 2021.06.28.00-v2)
308
+ - RCTTypeSafety (= 0.69.4)
309
+ - React-Codegen (= 0.69.4)
310
+ - React-Core/RCTImageHeaders (= 0.69.4)
311
+ - React-jsi (= 0.69.4)
312
+ - React-RCTNetwork (= 0.69.4)
313
+ - ReactCommon/turbomodule/core (= 0.69.4)
314
+ - React-RCTLinking (0.69.4):
315
+ - React-Codegen (= 0.69.4)
316
+ - React-Core/RCTLinkingHeaders (= 0.69.4)
317
+ - React-jsi (= 0.69.4)
318
+ - ReactCommon/turbomodule/core (= 0.69.4)
319
+ - React-RCTNetwork (0.69.4):
320
+ - RCT-Folly (= 2021.06.28.00-v2)
321
+ - RCTTypeSafety (= 0.69.4)
322
+ - React-Codegen (= 0.69.4)
323
+ - React-Core/RCTNetworkHeaders (= 0.69.4)
324
+ - React-jsi (= 0.69.4)
325
+ - ReactCommon/turbomodule/core (= 0.69.4)
326
+ - React-RCTSettings (0.69.4):
327
+ - RCT-Folly (= 2021.06.28.00-v2)
328
+ - RCTTypeSafety (= 0.69.4)
329
+ - React-Codegen (= 0.69.4)
330
+ - React-Core/RCTSettingsHeaders (= 0.69.4)
331
+ - React-jsi (= 0.69.4)
332
+ - ReactCommon/turbomodule/core (= 0.69.4)
333
+ - React-RCTText (0.69.4):
334
+ - React-Core/RCTTextHeaders (= 0.69.4)
335
+ - React-RCTVibration (0.69.4):
336
+ - RCT-Folly (= 2021.06.28.00-v2)
337
+ - React-Codegen (= 0.69.4)
338
+ - React-Core/RCTVibrationHeaders (= 0.69.4)
339
+ - React-jsi (= 0.69.4)
340
+ - ReactCommon/turbomodule/core (= 0.69.4)
341
+ - React-runtimeexecutor (0.69.4):
342
+ - React-jsi (= 0.69.4)
343
+ - ReactCommon/turbomodule/core (0.69.4):
344
+ - DoubleConversion
345
+ - glog
346
+ - RCT-Folly (= 2021.06.28.00-v2)
347
+ - React-bridging (= 0.69.4)
348
+ - React-callinvoker (= 0.69.4)
349
+ - React-Core (= 0.69.4)
350
+ - React-cxxreact (= 0.69.4)
351
+ - React-jsi (= 0.69.4)
352
+ - React-logger (= 0.69.4)
353
+ - React-perflogger (= 0.69.4)
354
+ - reactnative-plugin-appice (1.4.1):
355
+ - AppICE-IOS-SDK
356
+ - React
357
+ - SocketRocket (0.6.0)
358
+ - Yoga (1.14.0)
359
+ - YogaKit (1.18.1):
360
+ - Yoga (~> 1.14)
361
+
362
+ DEPENDENCIES:
363
+ - boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
364
+ - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
365
+ - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
366
+ - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
367
+ - Flipper (= 0.125.0)
368
+ - Flipper-Boost-iOSX (= 1.76.0.1.11)
369
+ - Flipper-DoubleConversion (= 3.2.0.1)
370
+ - Flipper-Fmt (= 7.1.7)
371
+ - Flipper-Folly (= 2.6.10)
372
+ - Flipper-Glog (= 0.5.0.5)
373
+ - Flipper-PeerTalk (= 0.0.4)
374
+ - Flipper-RSocket (= 1.4.3)
375
+ - FlipperKit (= 0.125.0)
376
+ - FlipperKit/Core (= 0.125.0)
377
+ - FlipperKit/CppBridge (= 0.125.0)
378
+ - FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0)
379
+ - FlipperKit/FBDefines (= 0.125.0)
380
+ - FlipperKit/FKPortForwarding (= 0.125.0)
381
+ - FlipperKit/FlipperKitHighlightOverlay (= 0.125.0)
382
+ - FlipperKit/FlipperKitLayoutPlugin (= 0.125.0)
383
+ - FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0)
384
+ - FlipperKit/FlipperKitNetworkPlugin (= 0.125.0)
385
+ - FlipperKit/FlipperKitReactPlugin (= 0.125.0)
386
+ - FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0)
387
+ - FlipperKit/SKIOSNetworkPlugin (= 0.125.0)
388
+ - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
389
+ - OpenSSL-Universal (= 1.1.1100)
390
+ - RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
391
+ - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
392
+ - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
393
+ - React (from `../node_modules/react-native/`)
394
+ - React-bridging (from `../node_modules/react-native/ReactCommon`)
395
+ - React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
396
+ - React-Codegen (from `build/generated/ios`)
397
+ - React-Core (from `../node_modules/react-native/`)
398
+ - React-Core/DevSupport (from `../node_modules/react-native/`)
399
+ - React-Core/RCTWebSocket (from `../node_modules/react-native/`)
400
+ - React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
401
+ - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
402
+ - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
403
+ - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
404
+ - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
405
+ - React-logger (from `../node_modules/react-native/ReactCommon/logger`)
406
+ - React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
407
+ - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
408
+ - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
409
+ - React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
410
+ - React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
411
+ - React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
412
+ - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
413
+ - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
414
+ - React-RCTText (from `../node_modules/react-native/Libraries/Text`)
415
+ - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
416
+ - React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
417
+ - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
418
+ - reactnative-plugin-appice (from `../node_modules/reactnative-plugin-appice`)
419
+ - Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
420
+
421
+ SPEC REPOS:
422
+ trunk:
423
+ - AppICE-IOS-SDK
424
+ - CocoaAsyncSocket
425
+ - Flipper
426
+ - Flipper-Boost-iOSX
427
+ - Flipper-DoubleConversion
428
+ - Flipper-Fmt
429
+ - Flipper-Folly
430
+ - Flipper-Glog
431
+ - Flipper-PeerTalk
432
+ - Flipper-RSocket
433
+ - FlipperKit
434
+ - fmt
435
+ - libevent
436
+ - OpenSSL-Universal
437
+ - SocketRocket
438
+ - YogaKit
439
+
440
+ EXTERNAL SOURCES:
441
+ boost:
442
+ :podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
443
+ DoubleConversion:
444
+ :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
445
+ FBLazyVector:
446
+ :path: "../node_modules/react-native/Libraries/FBLazyVector"
447
+ FBReactNativeSpec:
448
+ :path: "../node_modules/react-native/React/FBReactNativeSpec"
449
+ glog:
450
+ :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
451
+ RCT-Folly:
452
+ :podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
453
+ RCTRequired:
454
+ :path: "../node_modules/react-native/Libraries/RCTRequired"
455
+ RCTTypeSafety:
456
+ :path: "../node_modules/react-native/Libraries/TypeSafety"
457
+ React:
458
+ :path: "../node_modules/react-native/"
459
+ React-bridging:
460
+ :path: "../node_modules/react-native/ReactCommon"
461
+ React-callinvoker:
462
+ :path: "../node_modules/react-native/ReactCommon/callinvoker"
463
+ React-Codegen:
464
+ :path: build/generated/ios
465
+ React-Core:
466
+ :path: "../node_modules/react-native/"
467
+ React-CoreModules:
468
+ :path: "../node_modules/react-native/React/CoreModules"
469
+ React-cxxreact:
470
+ :path: "../node_modules/react-native/ReactCommon/cxxreact"
471
+ React-jsi:
472
+ :path: "../node_modules/react-native/ReactCommon/jsi"
473
+ React-jsiexecutor:
474
+ :path: "../node_modules/react-native/ReactCommon/jsiexecutor"
475
+ React-jsinspector:
476
+ :path: "../node_modules/react-native/ReactCommon/jsinspector"
477
+ React-logger:
478
+ :path: "../node_modules/react-native/ReactCommon/logger"
479
+ React-perflogger:
480
+ :path: "../node_modules/react-native/ReactCommon/reactperflogger"
481
+ React-RCTActionSheet:
482
+ :path: "../node_modules/react-native/Libraries/ActionSheetIOS"
483
+ React-RCTAnimation:
484
+ :path: "../node_modules/react-native/Libraries/NativeAnimation"
485
+ React-RCTBlob:
486
+ :path: "../node_modules/react-native/Libraries/Blob"
487
+ React-RCTImage:
488
+ :path: "../node_modules/react-native/Libraries/Image"
489
+ React-RCTLinking:
490
+ :path: "../node_modules/react-native/Libraries/LinkingIOS"
491
+ React-RCTNetwork:
492
+ :path: "../node_modules/react-native/Libraries/Network"
493
+ React-RCTSettings:
494
+ :path: "../node_modules/react-native/Libraries/Settings"
495
+ React-RCTText:
496
+ :path: "../node_modules/react-native/Libraries/Text"
497
+ React-RCTVibration:
498
+ :path: "../node_modules/react-native/Libraries/Vibration"
499
+ React-runtimeexecutor:
500
+ :path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
501
+ ReactCommon:
502
+ :path: "../node_modules/react-native/ReactCommon"
503
+ reactnative-plugin-appice:
504
+ :path: "../node_modules/reactnative-plugin-appice"
505
+ Yoga:
506
+ :path: "../node_modules/react-native/ReactCommon/yoga"
507
+
508
+ SPEC CHECKSUMS:
509
+ AppICE-IOS-SDK: caa86e524469adbc3557f5d110314fe3d9cfd39b
510
+ boost: a7c83b31436843459a1961bfd74b96033dc77234
511
+ CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
512
+ DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
513
+ FBLazyVector: c71b8c429a8af2aff1013934a7152e9d9d0c937d
514
+ FBReactNativeSpec: cb0df4f0084281b394f76bb9b4d1d9540f35963f
515
+ Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0
516
+ Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
517
+ Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
518
+ Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
519
+ Flipper-Folly: 584845625005ff068a6ebf41f857f468decd26b3
520
+ Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
521
+ Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
522
+ Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
523
+ FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86
524
+ fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
525
+ glog: 3d02b25ca00c2d456734d0bcff864cbc62f6ae1a
526
+ libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
527
+ OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
528
+ RCT-Folly: b9d9fe1fc70114b751c076104e52f3b1b5e5a95a
529
+ RCTRequired: bd9d2ab0fda10171fcbcf9ba61a7df4dc15a28f4
530
+ RCTTypeSafety: e44e139bf6ec8042db396201834fc2372f6a21cd
531
+ React: 482cd1ba23c471be1aed3800180be2427418d7be
532
+ React-bridging: c2ea4fed6fe4ed27c12fd71e88b5d5d3da107fde
533
+ React-callinvoker: d4d1f98163fb5e35545e910415ef6c04796bb188
534
+ React-Codegen: ff35fb9c7f6ec2ed34fb6de2e1099d88dfb25f2f
535
+ React-Core: 4d3443a45b67c71d74d7243ddde9569d1e4f4fad
536
+ React-CoreModules: 70be25399366b5632ab18ecf6fe444a8165a7bea
537
+ React-cxxreact: 822d3794fc0bf206f4691592f90e086dd4f92228
538
+ React-jsi: ffa51cbc9a78cc156cf61f79ed52ecb76dc6013b
539
+ React-jsiexecutor: a27badbbdbc0ff781813370736a2d1c7261181d4
540
+ React-jsinspector: 8a3d3f5dcd23a91e8c80b1bf0e96902cd1dca999
541
+ React-logger: 1088859f145b8f6dd0d3ed051a647ef0e3e80fad
542
+ React-perflogger: cb386fd44c97ec7f8199c04c12b22066b0f2e1e0
543
+ React-RCTActionSheet: f803a85e46cf5b4066c2ac5e122447f918e9c6e5
544
+ React-RCTAnimation: 19c80fa950ccce7f4db76a2a7f2cf79baae07fc7
545
+ React-RCTBlob: f36ab97e2d515c36df14a1571e50056be80413d5
546
+ React-RCTImage: 2c8f0a329a116248e82f8972ffe806e47c6d1cfa
547
+ React-RCTLinking: 670f0223075aff33be3b89714f1da4f5343fc4af
548
+ React-RCTNetwork: 09385b73f4ff1f46bd5d749540fb33f69a7e5908
549
+ React-RCTSettings: 33b12d3ac7a1f2eba069ec7bd1b84345263b3bbe
550
+ React-RCTText: a1a3ea902403bd9ae4cf6f7960551dc1d25711b5
551
+ React-RCTVibration: 9adb4a3cbb598d1bbd46a05256f445e4b8c70603
552
+ React-runtimeexecutor: 61ee22a8cdf8b6bb2a7fb7b4ba2cc763e5285196
553
+ ReactCommon: 8f67bd7e0a6afade0f20718f859dc8c2275f2e83
554
+ reactnative-plugin-appice: d5da161b3d4d07b9397124e83f52803af5ad75f9
555
+ SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
556
+ Yoga: ff994563b2fd98c982ca58e8cd9db2cdaf4dda74
557
+ YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
558
+
559
+ PODFILE CHECKSUM: 93ffad17d739b74517a1b91e0eb7f9ef64547705
560
+
561
+ COCOAPODS: 1.11.3