@ionic/portals-react-native 0.7.1 → 0.8.0
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.
package/README.md
CHANGED
|
@@ -30,13 +30,13 @@ See our docs to [get started with Portals](https://ionic.io/docs/portals/getting
|
|
|
30
30
|
|
|
31
31
|
## Registration
|
|
32
32
|
|
|
33
|
-
The Ionic Portals library for React Native requires a
|
|
33
|
+
The Ionic Portals library for React Native requires a license key to use. Once you have integrated Portals into your project, login to your ionic account to get a key. See our doc on [how to register for free and get your Portals license key](https://ionic.io/docs/portals/how-to/get-a-product-key) and refer to the [React Native](https://ionic.io/docs/portals/getting-started/react-native) getting started guides to see where to add your key.
|
|
34
34
|
|
|
35
35
|
## FAQ
|
|
36
36
|
|
|
37
37
|
### What is the pricing for Portals use?
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
[Contact our sales team](https://ionic.io/portals#sales) for more information about pricing.
|
|
40
40
|
|
|
41
41
|
### Is Portals Open Source?
|
|
42
42
|
|
|
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
|
|
|
11
11
|
s.license = package["license"]
|
|
12
12
|
s.authors = package["author"]
|
|
13
13
|
|
|
14
|
-
s.platforms = { :ios =>
|
|
14
|
+
s.platforms = { :ios => '14.0' }
|
|
15
15
|
s.source = { :git => "https://github.com/ionic-team/ionic-portals-react-native.git", :tag => "#{s.version}" }
|
|
16
16
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
@@ -19,14 +19,14 @@ Pod::Spec.new do |s|
|
|
|
19
19
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
20
20
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|
|
21
21
|
if respond_to?(:install_modules_dependencies, true)
|
|
22
|
-
s.dependency 'IonicPortals', '~> 0.
|
|
23
|
-
s.dependency 'IonicLiveUpdates', '~> 0.5.
|
|
22
|
+
s.dependency 'IonicPortals', '~> 0.12.0'
|
|
23
|
+
s.dependency 'IonicLiveUpdates', '~> 0.5.6'
|
|
24
24
|
install_modules_dependencies(s)
|
|
25
25
|
|
|
26
26
|
else
|
|
27
27
|
s.dependency "React-Core"
|
|
28
|
-
s.dependency 'IonicPortals', '~> 0.
|
|
29
|
-
s.dependency 'IonicLiveUpdates', '~> 0.5.
|
|
28
|
+
s.dependency 'IonicPortals', '~> 0.12.0'
|
|
29
|
+
s.dependency 'IonicLiveUpdates', '~> 0.5.6'
|
|
30
30
|
|
|
31
31
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
32
32
|
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|
package/android/build.gradle
CHANGED
|
@@ -8,7 +8,7 @@ buildscript {
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
dependencies {
|
|
11
|
-
classpath "com.android.tools.build:gradle:7.2
|
|
11
|
+
classpath "com.android.tools.build:gradle:8.7.2"
|
|
12
12
|
// noinspection DifferentKotlinGradleVersion
|
|
13
13
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
14
14
|
}
|
|
@@ -95,7 +95,7 @@ dependencies {
|
|
|
95
95
|
//noinspection GradleDynamicVersion
|
|
96
96
|
implementation "com.facebook.react:react-native:+"
|
|
97
97
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
98
|
-
implementation "io.ionic:portals:0.
|
|
98
|
+
implementation "io.ionic:portals:0.12.+"
|
|
99
99
|
implementation "io.ionic:liveupdates:0.5.+"
|
|
100
100
|
}
|
|
101
101
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
package io.ionic.portals.reactnative
|
|
2
2
|
|
|
3
|
+
import android.util.Log
|
|
3
4
|
import com.facebook.react.bridge.*
|
|
4
5
|
import com.facebook.react.modules.core.DeviceEventManagerModule
|
|
5
6
|
import com.getcapacitor.JSObject
|
|
@@ -35,4 +36,12 @@ internal class PortalsPubSubModule(reactContext: ReactApplicationContext) :
|
|
|
35
36
|
}
|
|
36
37
|
}
|
|
37
38
|
|
|
38
|
-
private fun ReadableMap.toJSObject(): JSObject
|
|
39
|
+
private fun ReadableMap.toJSObject(): JSObject {
|
|
40
|
+
val map = toHashMap() as? Map<*, *> ?: return JSObject()
|
|
41
|
+
return try {
|
|
42
|
+
JSObject.fromJSONObject(JSONObject(map))
|
|
43
|
+
} catch (e: Exception) {
|
|
44
|
+
Log.e("PortalsPubSubModule", "Error converting ReadableMap to JSObject", e)
|
|
45
|
+
JSObject()
|
|
46
|
+
}
|
|
47
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ionic/portals-react-native",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "Portals for React Native",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -57,19 +57,24 @@
|
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@commitlint/config-conventional": "^17.0.2",
|
|
59
59
|
"@evilmartians/lefthook": "^1.5.0",
|
|
60
|
-
"@react-native/
|
|
60
|
+
"@react-native/babel-preset": "0.75.4",
|
|
61
|
+
"@react-native/eslint-config": "0.75.4",
|
|
62
|
+
"@react-native/metro-config": "0.75.4",
|
|
63
|
+
"@react-native/typescript-config": "0.75.4",
|
|
61
64
|
"@release-it/conventional-changelog": "^5.0.0",
|
|
62
65
|
"@types/jest": "^29.5.5",
|
|
63
66
|
"@types/react": "^18.2.44",
|
|
67
|
+
"@typescript-eslint/eslint-plugin": "latest",
|
|
64
68
|
"commitlint": "^17.0.2",
|
|
65
69
|
"del-cli": "^5.1.0",
|
|
66
70
|
"eslint": "^8.51.0",
|
|
67
71
|
"eslint-config-prettier": "^9.0.0",
|
|
68
|
-
"eslint-plugin-
|
|
72
|
+
"eslint-plugin-jest": "^28.11.0",
|
|
73
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
69
74
|
"jest": "^29.7.0",
|
|
70
75
|
"prettier": "^3.0.3",
|
|
71
|
-
"react": "18.
|
|
72
|
-
"react-native": "0.
|
|
76
|
+
"react": "18.3.1",
|
|
77
|
+
"react-native": "0.75.4",
|
|
73
78
|
"react-native-builder-bob": "^0.23.2",
|
|
74
79
|
"release-it": "^15.0.0",
|
|
75
80
|
"turbo": "^1.10.7",
|
|
@@ -77,7 +82,8 @@
|
|
|
77
82
|
"typescript": "^5.2.2"
|
|
78
83
|
},
|
|
79
84
|
"resolutions": {
|
|
80
|
-
"@types/react": "^18.2.44"
|
|
85
|
+
"@types/react": "^18.2.44",
|
|
86
|
+
"typescript": "5.2.2"
|
|
81
87
|
},
|
|
82
88
|
"peerDependencies": {
|
|
83
89
|
"react": "*",
|
|
@@ -107,6 +113,9 @@
|
|
|
107
113
|
"@react-native",
|
|
108
114
|
"prettier"
|
|
109
115
|
],
|
|
116
|
+
"plugins": [
|
|
117
|
+
"prettier"
|
|
118
|
+
],
|
|
110
119
|
"rules": {
|
|
111
120
|
"prettier/prettier": [
|
|
112
121
|
"error",
|
|
@@ -115,7 +124,8 @@
|
|
|
115
124
|
"singleQuote": true,
|
|
116
125
|
"tabWidth": 2,
|
|
117
126
|
"trailingComma": "es5",
|
|
118
|
-
"useTabs": false
|
|
127
|
+
"useTabs": false,
|
|
128
|
+
"endOfLine": "auto"
|
|
119
129
|
}
|
|
120
130
|
]
|
|
121
131
|
}
|
package/ios/Podfile
DELETED
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
|
4
|
-
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
|
5
|
-
|
|
6
|
-
platform :ios, '14.0'
|
|
7
|
-
|
|
8
|
-
target 'ReactNativePortals' do
|
|
9
|
-
# Comment the next line if you don't want to use dynamic frameworks
|
|
10
|
-
config = use_native_modules!
|
|
11
|
-
use_react_native!(path: config[:reactNativePath])
|
|
12
|
-
# Pods for ReactNativePortals
|
|
13
|
-
pod 'IonicPortals', '~> 0.11.0'
|
|
14
|
-
pod 'IonicLiveUpdates', '~> 0.5.2'
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
dynamic_frameworks = ['Capacitor', 'CapacitorCordova']
|
|
18
|
-
|
|
19
|
-
pre_install do |installer|
|
|
20
|
-
installer.pod_targets.each do |pod|
|
|
21
|
-
if dynamic_frameworks.include?(pod.name)
|
|
22
|
-
def pod.static_framework?
|
|
23
|
-
false
|
|
24
|
-
end
|
|
25
|
-
def pod.build_type
|
|
26
|
-
Pod::BuildType.dynamic_framework
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
|
|
32
|
-
post_install do |installer|
|
|
33
|
-
installer.pods_project.targets.each do |target|
|
|
34
|
-
target.build_configurations.each do |config|
|
|
35
|
-
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)',
|
|
36
|
-
'_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION']
|
|
37
|
-
end
|
|
38
|
-
end
|
|
39
|
-
end
|
package/ios/Podfile.lock
DELETED
|
@@ -1,623 +0,0 @@
|
|
|
1
|
-
PODS:
|
|
2
|
-
- boost (1.76.0)
|
|
3
|
-
- Capacitor (6.0.0):
|
|
4
|
-
- CapacitorCordova
|
|
5
|
-
- CapacitorCordova (6.0.0)
|
|
6
|
-
- DoubleConversion (1.1.6)
|
|
7
|
-
- FBLazyVector (0.72.12)
|
|
8
|
-
- FBReactNativeSpec (0.72.12):
|
|
9
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
10
|
-
- RCTRequired (= 0.72.12)
|
|
11
|
-
- RCTTypeSafety (= 0.72.12)
|
|
12
|
-
- React-Core (= 0.72.12)
|
|
13
|
-
- React-jsi (= 0.72.12)
|
|
14
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
15
|
-
- fmt (6.2.1)
|
|
16
|
-
- glog (0.3.5)
|
|
17
|
-
- hermes-engine (0.72.12):
|
|
18
|
-
- hermes-engine/Pre-built (= 0.72.12)
|
|
19
|
-
- hermes-engine/Pre-built (0.72.12)
|
|
20
|
-
- IonicLiveUpdates (0.5.2)
|
|
21
|
-
- IonicPortals (0.11.0):
|
|
22
|
-
- Capacitor (~> 6.0)
|
|
23
|
-
- IonicLiveUpdates (< 0.6.0, >= 0.5.0)
|
|
24
|
-
- libevent (2.1.12)
|
|
25
|
-
- RCT-Folly (2021.07.22.00):
|
|
26
|
-
- boost
|
|
27
|
-
- DoubleConversion
|
|
28
|
-
- fmt (~> 6.2.1)
|
|
29
|
-
- glog
|
|
30
|
-
- RCT-Folly/Default (= 2021.07.22.00)
|
|
31
|
-
- RCT-Folly/Default (2021.07.22.00):
|
|
32
|
-
- boost
|
|
33
|
-
- DoubleConversion
|
|
34
|
-
- fmt (~> 6.2.1)
|
|
35
|
-
- glog
|
|
36
|
-
- RCT-Folly/Futures (2021.07.22.00):
|
|
37
|
-
- boost
|
|
38
|
-
- DoubleConversion
|
|
39
|
-
- fmt (~> 6.2.1)
|
|
40
|
-
- glog
|
|
41
|
-
- libevent
|
|
42
|
-
- RCTRequired (0.72.12)
|
|
43
|
-
- RCTTypeSafety (0.72.12):
|
|
44
|
-
- FBLazyVector (= 0.72.12)
|
|
45
|
-
- RCTRequired (= 0.72.12)
|
|
46
|
-
- React-Core (= 0.72.12)
|
|
47
|
-
- React (0.72.12):
|
|
48
|
-
- React-Core (= 0.72.12)
|
|
49
|
-
- React-Core/DevSupport (= 0.72.12)
|
|
50
|
-
- React-Core/RCTWebSocket (= 0.72.12)
|
|
51
|
-
- React-RCTActionSheet (= 0.72.12)
|
|
52
|
-
- React-RCTAnimation (= 0.72.12)
|
|
53
|
-
- React-RCTBlob (= 0.72.12)
|
|
54
|
-
- React-RCTImage (= 0.72.12)
|
|
55
|
-
- React-RCTLinking (= 0.72.12)
|
|
56
|
-
- React-RCTNetwork (= 0.72.12)
|
|
57
|
-
- React-RCTSettings (= 0.72.12)
|
|
58
|
-
- React-RCTText (= 0.72.12)
|
|
59
|
-
- React-RCTVibration (= 0.72.12)
|
|
60
|
-
- React-callinvoker (0.72.12)
|
|
61
|
-
- React-Codegen (0.72.12):
|
|
62
|
-
- DoubleConversion
|
|
63
|
-
- FBReactNativeSpec
|
|
64
|
-
- glog
|
|
65
|
-
- hermes-engine
|
|
66
|
-
- RCT-Folly
|
|
67
|
-
- RCTRequired
|
|
68
|
-
- RCTTypeSafety
|
|
69
|
-
- React-Core
|
|
70
|
-
- React-jsi
|
|
71
|
-
- React-jsiexecutor
|
|
72
|
-
- React-NativeModulesApple
|
|
73
|
-
- React-rncore
|
|
74
|
-
- ReactCommon/turbomodule/bridging
|
|
75
|
-
- ReactCommon/turbomodule/core
|
|
76
|
-
- React-Core (0.72.12):
|
|
77
|
-
- glog
|
|
78
|
-
- hermes-engine
|
|
79
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
80
|
-
- React-Core/Default (= 0.72.12)
|
|
81
|
-
- React-cxxreact
|
|
82
|
-
- React-hermes
|
|
83
|
-
- React-jsi
|
|
84
|
-
- React-jsiexecutor
|
|
85
|
-
- React-perflogger
|
|
86
|
-
- React-runtimeexecutor
|
|
87
|
-
- React-utils
|
|
88
|
-
- SocketRocket (= 0.6.1)
|
|
89
|
-
- Yoga
|
|
90
|
-
- React-Core/CoreModulesHeaders (0.72.12):
|
|
91
|
-
- glog
|
|
92
|
-
- hermes-engine
|
|
93
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
94
|
-
- React-Core/Default
|
|
95
|
-
- React-cxxreact
|
|
96
|
-
- React-hermes
|
|
97
|
-
- React-jsi
|
|
98
|
-
- React-jsiexecutor
|
|
99
|
-
- React-perflogger
|
|
100
|
-
- React-runtimeexecutor
|
|
101
|
-
- React-utils
|
|
102
|
-
- SocketRocket (= 0.6.1)
|
|
103
|
-
- Yoga
|
|
104
|
-
- React-Core/Default (0.72.12):
|
|
105
|
-
- glog
|
|
106
|
-
- hermes-engine
|
|
107
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
108
|
-
- React-cxxreact
|
|
109
|
-
- React-hermes
|
|
110
|
-
- React-jsi
|
|
111
|
-
- React-jsiexecutor
|
|
112
|
-
- React-perflogger
|
|
113
|
-
- React-runtimeexecutor
|
|
114
|
-
- React-utils
|
|
115
|
-
- SocketRocket (= 0.6.1)
|
|
116
|
-
- Yoga
|
|
117
|
-
- React-Core/DevSupport (0.72.12):
|
|
118
|
-
- glog
|
|
119
|
-
- hermes-engine
|
|
120
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
121
|
-
- React-Core/Default (= 0.72.12)
|
|
122
|
-
- React-Core/RCTWebSocket (= 0.72.12)
|
|
123
|
-
- React-cxxreact
|
|
124
|
-
- React-hermes
|
|
125
|
-
- React-jsi
|
|
126
|
-
- React-jsiexecutor
|
|
127
|
-
- React-jsinspector (= 0.72.12)
|
|
128
|
-
- React-perflogger
|
|
129
|
-
- React-runtimeexecutor
|
|
130
|
-
- React-utils
|
|
131
|
-
- SocketRocket (= 0.6.1)
|
|
132
|
-
- Yoga
|
|
133
|
-
- React-Core/RCTActionSheetHeaders (0.72.12):
|
|
134
|
-
- glog
|
|
135
|
-
- hermes-engine
|
|
136
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
137
|
-
- React-Core/Default
|
|
138
|
-
- React-cxxreact
|
|
139
|
-
- React-hermes
|
|
140
|
-
- React-jsi
|
|
141
|
-
- React-jsiexecutor
|
|
142
|
-
- React-perflogger
|
|
143
|
-
- React-runtimeexecutor
|
|
144
|
-
- React-utils
|
|
145
|
-
- SocketRocket (= 0.6.1)
|
|
146
|
-
- Yoga
|
|
147
|
-
- React-Core/RCTAnimationHeaders (0.72.12):
|
|
148
|
-
- glog
|
|
149
|
-
- hermes-engine
|
|
150
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
151
|
-
- React-Core/Default
|
|
152
|
-
- React-cxxreact
|
|
153
|
-
- React-hermes
|
|
154
|
-
- React-jsi
|
|
155
|
-
- React-jsiexecutor
|
|
156
|
-
- React-perflogger
|
|
157
|
-
- React-runtimeexecutor
|
|
158
|
-
- React-utils
|
|
159
|
-
- SocketRocket (= 0.6.1)
|
|
160
|
-
- Yoga
|
|
161
|
-
- React-Core/RCTBlobHeaders (0.72.12):
|
|
162
|
-
- glog
|
|
163
|
-
- hermes-engine
|
|
164
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
165
|
-
- React-Core/Default
|
|
166
|
-
- React-cxxreact
|
|
167
|
-
- React-hermes
|
|
168
|
-
- React-jsi
|
|
169
|
-
- React-jsiexecutor
|
|
170
|
-
- React-perflogger
|
|
171
|
-
- React-runtimeexecutor
|
|
172
|
-
- React-utils
|
|
173
|
-
- SocketRocket (= 0.6.1)
|
|
174
|
-
- Yoga
|
|
175
|
-
- React-Core/RCTImageHeaders (0.72.12):
|
|
176
|
-
- glog
|
|
177
|
-
- hermes-engine
|
|
178
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
179
|
-
- React-Core/Default
|
|
180
|
-
- React-cxxreact
|
|
181
|
-
- React-hermes
|
|
182
|
-
- React-jsi
|
|
183
|
-
- React-jsiexecutor
|
|
184
|
-
- React-perflogger
|
|
185
|
-
- React-runtimeexecutor
|
|
186
|
-
- React-utils
|
|
187
|
-
- SocketRocket (= 0.6.1)
|
|
188
|
-
- Yoga
|
|
189
|
-
- React-Core/RCTLinkingHeaders (0.72.12):
|
|
190
|
-
- glog
|
|
191
|
-
- hermes-engine
|
|
192
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
193
|
-
- React-Core/Default
|
|
194
|
-
- React-cxxreact
|
|
195
|
-
- React-hermes
|
|
196
|
-
- React-jsi
|
|
197
|
-
- React-jsiexecutor
|
|
198
|
-
- React-perflogger
|
|
199
|
-
- React-runtimeexecutor
|
|
200
|
-
- React-utils
|
|
201
|
-
- SocketRocket (= 0.6.1)
|
|
202
|
-
- Yoga
|
|
203
|
-
- React-Core/RCTNetworkHeaders (0.72.12):
|
|
204
|
-
- glog
|
|
205
|
-
- hermes-engine
|
|
206
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
207
|
-
- React-Core/Default
|
|
208
|
-
- React-cxxreact
|
|
209
|
-
- React-hermes
|
|
210
|
-
- React-jsi
|
|
211
|
-
- React-jsiexecutor
|
|
212
|
-
- React-perflogger
|
|
213
|
-
- React-runtimeexecutor
|
|
214
|
-
- React-utils
|
|
215
|
-
- SocketRocket (= 0.6.1)
|
|
216
|
-
- Yoga
|
|
217
|
-
- React-Core/RCTSettingsHeaders (0.72.12):
|
|
218
|
-
- glog
|
|
219
|
-
- hermes-engine
|
|
220
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
221
|
-
- React-Core/Default
|
|
222
|
-
- React-cxxreact
|
|
223
|
-
- React-hermes
|
|
224
|
-
- React-jsi
|
|
225
|
-
- React-jsiexecutor
|
|
226
|
-
- React-perflogger
|
|
227
|
-
- React-runtimeexecutor
|
|
228
|
-
- React-utils
|
|
229
|
-
- SocketRocket (= 0.6.1)
|
|
230
|
-
- Yoga
|
|
231
|
-
- React-Core/RCTTextHeaders (0.72.12):
|
|
232
|
-
- glog
|
|
233
|
-
- hermes-engine
|
|
234
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
235
|
-
- React-Core/Default
|
|
236
|
-
- React-cxxreact
|
|
237
|
-
- React-hermes
|
|
238
|
-
- React-jsi
|
|
239
|
-
- React-jsiexecutor
|
|
240
|
-
- React-perflogger
|
|
241
|
-
- React-runtimeexecutor
|
|
242
|
-
- React-utils
|
|
243
|
-
- SocketRocket (= 0.6.1)
|
|
244
|
-
- Yoga
|
|
245
|
-
- React-Core/RCTVibrationHeaders (0.72.12):
|
|
246
|
-
- glog
|
|
247
|
-
- hermes-engine
|
|
248
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
249
|
-
- React-Core/Default
|
|
250
|
-
- React-cxxreact
|
|
251
|
-
- React-hermes
|
|
252
|
-
- React-jsi
|
|
253
|
-
- React-jsiexecutor
|
|
254
|
-
- React-perflogger
|
|
255
|
-
- React-runtimeexecutor
|
|
256
|
-
- React-utils
|
|
257
|
-
- SocketRocket (= 0.6.1)
|
|
258
|
-
- Yoga
|
|
259
|
-
- React-Core/RCTWebSocket (0.72.12):
|
|
260
|
-
- glog
|
|
261
|
-
- hermes-engine
|
|
262
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
263
|
-
- React-Core/Default (= 0.72.12)
|
|
264
|
-
- React-cxxreact
|
|
265
|
-
- React-hermes
|
|
266
|
-
- React-jsi
|
|
267
|
-
- React-jsiexecutor
|
|
268
|
-
- React-perflogger
|
|
269
|
-
- React-runtimeexecutor
|
|
270
|
-
- React-utils
|
|
271
|
-
- SocketRocket (= 0.6.1)
|
|
272
|
-
- Yoga
|
|
273
|
-
- React-CoreModules (0.72.12):
|
|
274
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
275
|
-
- RCTTypeSafety (= 0.72.12)
|
|
276
|
-
- React-Codegen (= 0.72.12)
|
|
277
|
-
- React-Core/CoreModulesHeaders (= 0.72.12)
|
|
278
|
-
- React-jsi (= 0.72.12)
|
|
279
|
-
- React-RCTBlob
|
|
280
|
-
- React-RCTImage (= 0.72.12)
|
|
281
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
282
|
-
- SocketRocket (= 0.6.1)
|
|
283
|
-
- React-cxxreact (0.72.12):
|
|
284
|
-
- boost (= 1.76.0)
|
|
285
|
-
- DoubleConversion
|
|
286
|
-
- glog
|
|
287
|
-
- hermes-engine
|
|
288
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
289
|
-
- React-callinvoker (= 0.72.12)
|
|
290
|
-
- React-debug (= 0.72.12)
|
|
291
|
-
- React-jsi (= 0.72.12)
|
|
292
|
-
- React-jsinspector (= 0.72.12)
|
|
293
|
-
- React-logger (= 0.72.12)
|
|
294
|
-
- React-perflogger (= 0.72.12)
|
|
295
|
-
- React-runtimeexecutor (= 0.72.12)
|
|
296
|
-
- React-debug (0.72.12)
|
|
297
|
-
- React-hermes (0.72.12):
|
|
298
|
-
- DoubleConversion
|
|
299
|
-
- glog
|
|
300
|
-
- hermes-engine
|
|
301
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
302
|
-
- RCT-Folly/Futures (= 2021.07.22.00)
|
|
303
|
-
- React-cxxreact (= 0.72.12)
|
|
304
|
-
- React-jsi
|
|
305
|
-
- React-jsiexecutor (= 0.72.12)
|
|
306
|
-
- React-jsinspector (= 0.72.12)
|
|
307
|
-
- React-perflogger (= 0.72.12)
|
|
308
|
-
- React-jsi (0.72.12):
|
|
309
|
-
- boost (= 1.76.0)
|
|
310
|
-
- DoubleConversion
|
|
311
|
-
- glog
|
|
312
|
-
- hermes-engine
|
|
313
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
314
|
-
- React-jsiexecutor (0.72.12):
|
|
315
|
-
- DoubleConversion
|
|
316
|
-
- glog
|
|
317
|
-
- hermes-engine
|
|
318
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
319
|
-
- React-cxxreact (= 0.72.12)
|
|
320
|
-
- React-jsi (= 0.72.12)
|
|
321
|
-
- React-perflogger (= 0.72.12)
|
|
322
|
-
- React-jsinspector (0.72.12)
|
|
323
|
-
- React-logger (0.72.12):
|
|
324
|
-
- glog
|
|
325
|
-
- React-NativeModulesApple (0.72.12):
|
|
326
|
-
- hermes-engine
|
|
327
|
-
- React-callinvoker
|
|
328
|
-
- React-Core
|
|
329
|
-
- React-cxxreact
|
|
330
|
-
- React-jsi
|
|
331
|
-
- React-runtimeexecutor
|
|
332
|
-
- ReactCommon/turbomodule/bridging
|
|
333
|
-
- ReactCommon/turbomodule/core
|
|
334
|
-
- React-perflogger (0.72.12)
|
|
335
|
-
- React-RCTActionSheet (0.72.12):
|
|
336
|
-
- React-Core/RCTActionSheetHeaders (= 0.72.12)
|
|
337
|
-
- React-RCTAnimation (0.72.12):
|
|
338
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
339
|
-
- RCTTypeSafety (= 0.72.12)
|
|
340
|
-
- React-Codegen (= 0.72.12)
|
|
341
|
-
- React-Core/RCTAnimationHeaders (= 0.72.12)
|
|
342
|
-
- React-jsi (= 0.72.12)
|
|
343
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
344
|
-
- React-RCTAppDelegate (0.72.12):
|
|
345
|
-
- RCT-Folly
|
|
346
|
-
- RCTRequired
|
|
347
|
-
- RCTTypeSafety
|
|
348
|
-
- React-Core
|
|
349
|
-
- React-CoreModules
|
|
350
|
-
- React-hermes
|
|
351
|
-
- React-NativeModulesApple
|
|
352
|
-
- React-RCTImage
|
|
353
|
-
- React-RCTNetwork
|
|
354
|
-
- React-runtimescheduler
|
|
355
|
-
- ReactCommon/turbomodule/core
|
|
356
|
-
- React-RCTBlob (0.72.12):
|
|
357
|
-
- hermes-engine
|
|
358
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
359
|
-
- React-Codegen (= 0.72.12)
|
|
360
|
-
- React-Core/RCTBlobHeaders (= 0.72.12)
|
|
361
|
-
- React-Core/RCTWebSocket (= 0.72.12)
|
|
362
|
-
- React-jsi (= 0.72.12)
|
|
363
|
-
- React-RCTNetwork (= 0.72.12)
|
|
364
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
365
|
-
- React-RCTImage (0.72.12):
|
|
366
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
367
|
-
- RCTTypeSafety (= 0.72.12)
|
|
368
|
-
- React-Codegen (= 0.72.12)
|
|
369
|
-
- React-Core/RCTImageHeaders (= 0.72.12)
|
|
370
|
-
- React-jsi (= 0.72.12)
|
|
371
|
-
- React-RCTNetwork (= 0.72.12)
|
|
372
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
373
|
-
- React-RCTLinking (0.72.12):
|
|
374
|
-
- React-Codegen (= 0.72.12)
|
|
375
|
-
- React-Core/RCTLinkingHeaders (= 0.72.12)
|
|
376
|
-
- React-jsi (= 0.72.12)
|
|
377
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
378
|
-
- React-RCTNetwork (0.72.12):
|
|
379
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
380
|
-
- RCTTypeSafety (= 0.72.12)
|
|
381
|
-
- React-Codegen (= 0.72.12)
|
|
382
|
-
- React-Core/RCTNetworkHeaders (= 0.72.12)
|
|
383
|
-
- React-jsi (= 0.72.12)
|
|
384
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
385
|
-
- React-RCTSettings (0.72.12):
|
|
386
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
387
|
-
- RCTTypeSafety (= 0.72.12)
|
|
388
|
-
- React-Codegen (= 0.72.12)
|
|
389
|
-
- React-Core/RCTSettingsHeaders (= 0.72.12)
|
|
390
|
-
- React-jsi (= 0.72.12)
|
|
391
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
392
|
-
- React-RCTText (0.72.12):
|
|
393
|
-
- React-Core/RCTTextHeaders (= 0.72.12)
|
|
394
|
-
- React-RCTVibration (0.72.12):
|
|
395
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
396
|
-
- React-Codegen (= 0.72.12)
|
|
397
|
-
- React-Core/RCTVibrationHeaders (= 0.72.12)
|
|
398
|
-
- React-jsi (= 0.72.12)
|
|
399
|
-
- ReactCommon/turbomodule/core (= 0.72.12)
|
|
400
|
-
- React-rncore (0.72.12)
|
|
401
|
-
- React-runtimeexecutor (0.72.12):
|
|
402
|
-
- React-jsi (= 0.72.12)
|
|
403
|
-
- React-runtimescheduler (0.72.12):
|
|
404
|
-
- glog
|
|
405
|
-
- hermes-engine
|
|
406
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
407
|
-
- React-callinvoker
|
|
408
|
-
- React-debug
|
|
409
|
-
- React-jsi
|
|
410
|
-
- React-runtimeexecutor
|
|
411
|
-
- React-utils (0.72.12):
|
|
412
|
-
- glog
|
|
413
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
414
|
-
- React-debug
|
|
415
|
-
- ReactCommon/turbomodule/bridging (0.72.12):
|
|
416
|
-
- DoubleConversion
|
|
417
|
-
- glog
|
|
418
|
-
- hermes-engine
|
|
419
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
420
|
-
- React-callinvoker (= 0.72.12)
|
|
421
|
-
- React-cxxreact (= 0.72.12)
|
|
422
|
-
- React-jsi (= 0.72.12)
|
|
423
|
-
- React-logger (= 0.72.12)
|
|
424
|
-
- React-perflogger (= 0.72.12)
|
|
425
|
-
- ReactCommon/turbomodule/core (0.72.12):
|
|
426
|
-
- DoubleConversion
|
|
427
|
-
- glog
|
|
428
|
-
- hermes-engine
|
|
429
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
430
|
-
- React-callinvoker (= 0.72.12)
|
|
431
|
-
- React-cxxreact (= 0.72.12)
|
|
432
|
-
- React-jsi (= 0.72.12)
|
|
433
|
-
- React-logger (= 0.72.12)
|
|
434
|
-
- React-perflogger (= 0.72.12)
|
|
435
|
-
- SocketRocket (0.6.1)
|
|
436
|
-
- Yoga (1.14.0)
|
|
437
|
-
|
|
438
|
-
DEPENDENCIES:
|
|
439
|
-
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
440
|
-
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
441
|
-
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
442
|
-
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
443
|
-
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
444
|
-
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
|
|
445
|
-
- IonicLiveUpdates (~> 0.5.2)
|
|
446
|
-
- IonicPortals (~> 0.11.0)
|
|
447
|
-
- libevent (~> 2.1.12)
|
|
448
|
-
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
449
|
-
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
450
|
-
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
451
|
-
- React (from `../node_modules/react-native/`)
|
|
452
|
-
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
453
|
-
- React-Codegen (from `build/generated/ios`)
|
|
454
|
-
- React-Core (from `../node_modules/react-native/`)
|
|
455
|
-
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
456
|
-
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
457
|
-
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
458
|
-
- React-debug (from `../node_modules/react-native/ReactCommon/react/debug`)
|
|
459
|
-
- React-hermes (from `../node_modules/react-native/ReactCommon/hermes`)
|
|
460
|
-
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
461
|
-
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
462
|
-
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
|
463
|
-
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
464
|
-
- React-NativeModulesApple (from `../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios`)
|
|
465
|
-
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
466
|
-
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
467
|
-
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
468
|
-
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
|
469
|
-
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
470
|
-
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
471
|
-
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
472
|
-
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
473
|
-
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
474
|
-
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
475
|
-
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
476
|
-
- React-rncore (from `../node_modules/react-native/ReactCommon`)
|
|
477
|
-
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
478
|
-
- React-runtimescheduler (from `../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler`)
|
|
479
|
-
- React-utils (from `../node_modules/react-native/ReactCommon/react/utils`)
|
|
480
|
-
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
481
|
-
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
482
|
-
|
|
483
|
-
SPEC REPOS:
|
|
484
|
-
trunk:
|
|
485
|
-
- Capacitor
|
|
486
|
-
- CapacitorCordova
|
|
487
|
-
- fmt
|
|
488
|
-
- IonicLiveUpdates
|
|
489
|
-
- IonicPortals
|
|
490
|
-
- libevent
|
|
491
|
-
- SocketRocket
|
|
492
|
-
|
|
493
|
-
EXTERNAL SOURCES:
|
|
494
|
-
boost:
|
|
495
|
-
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
496
|
-
DoubleConversion:
|
|
497
|
-
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
498
|
-
FBLazyVector:
|
|
499
|
-
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
500
|
-
FBReactNativeSpec:
|
|
501
|
-
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
502
|
-
glog:
|
|
503
|
-
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
504
|
-
hermes-engine:
|
|
505
|
-
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
|
|
506
|
-
RCT-Folly:
|
|
507
|
-
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
508
|
-
RCTRequired:
|
|
509
|
-
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
510
|
-
RCTTypeSafety:
|
|
511
|
-
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
512
|
-
React:
|
|
513
|
-
:path: "../node_modules/react-native/"
|
|
514
|
-
React-callinvoker:
|
|
515
|
-
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
516
|
-
React-Codegen:
|
|
517
|
-
:path: build/generated/ios
|
|
518
|
-
React-Core:
|
|
519
|
-
:path: "../node_modules/react-native/"
|
|
520
|
-
React-CoreModules:
|
|
521
|
-
:path: "../node_modules/react-native/React/CoreModules"
|
|
522
|
-
React-cxxreact:
|
|
523
|
-
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
524
|
-
React-debug:
|
|
525
|
-
:path: "../node_modules/react-native/ReactCommon/react/debug"
|
|
526
|
-
React-hermes:
|
|
527
|
-
:path: "../node_modules/react-native/ReactCommon/hermes"
|
|
528
|
-
React-jsi:
|
|
529
|
-
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
530
|
-
React-jsiexecutor:
|
|
531
|
-
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
532
|
-
React-jsinspector:
|
|
533
|
-
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
|
534
|
-
React-logger:
|
|
535
|
-
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
536
|
-
React-NativeModulesApple:
|
|
537
|
-
:path: "../node_modules/react-native/ReactCommon/react/nativemodule/core/platform/ios"
|
|
538
|
-
React-perflogger:
|
|
539
|
-
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
540
|
-
React-RCTActionSheet:
|
|
541
|
-
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
542
|
-
React-RCTAnimation:
|
|
543
|
-
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
544
|
-
React-RCTAppDelegate:
|
|
545
|
-
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
|
546
|
-
React-RCTBlob:
|
|
547
|
-
:path: "../node_modules/react-native/Libraries/Blob"
|
|
548
|
-
React-RCTImage:
|
|
549
|
-
:path: "../node_modules/react-native/Libraries/Image"
|
|
550
|
-
React-RCTLinking:
|
|
551
|
-
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
552
|
-
React-RCTNetwork:
|
|
553
|
-
:path: "../node_modules/react-native/Libraries/Network"
|
|
554
|
-
React-RCTSettings:
|
|
555
|
-
:path: "../node_modules/react-native/Libraries/Settings"
|
|
556
|
-
React-RCTText:
|
|
557
|
-
:path: "../node_modules/react-native/Libraries/Text"
|
|
558
|
-
React-RCTVibration:
|
|
559
|
-
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
560
|
-
React-rncore:
|
|
561
|
-
:path: "../node_modules/react-native/ReactCommon"
|
|
562
|
-
React-runtimeexecutor:
|
|
563
|
-
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
564
|
-
React-runtimescheduler:
|
|
565
|
-
:path: "../node_modules/react-native/ReactCommon/react/renderer/runtimescheduler"
|
|
566
|
-
React-utils:
|
|
567
|
-
:path: "../node_modules/react-native/ReactCommon/react/utils"
|
|
568
|
-
ReactCommon:
|
|
569
|
-
:path: "../node_modules/react-native/ReactCommon"
|
|
570
|
-
Yoga:
|
|
571
|
-
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
572
|
-
|
|
573
|
-
SPEC CHECKSUMS:
|
|
574
|
-
boost: 7dcd2de282d72e344012f7d6564d024930a6a440
|
|
575
|
-
Capacitor: d557fbf810720ffabd032536386e6f8c454286bd
|
|
576
|
-
CapacitorCordova: 6855c7b4b0c4ac8f39b9ed5bac5077d1fcc9eaa8
|
|
577
|
-
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
|
578
|
-
FBLazyVector: a31ac2336aea59512b5b982f8e231f65d7d148e1
|
|
579
|
-
FBReactNativeSpec: 0976da6bc1ebd3ea9b3a65d04be2c0117d304c4c
|
|
580
|
-
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
581
|
-
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
|
582
|
-
hermes-engine: e89344b9e9e54351c3c5cac075e0275148fb37ba
|
|
583
|
-
IonicLiveUpdates: d14e4b0e6a46c492b9e48390ed51a79278059bfd
|
|
584
|
-
IonicPortals: ee35bb5069a1265539a358367d3a6eec55cec02f
|
|
585
|
-
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
|
586
|
-
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
|
587
|
-
RCTRequired: b6cea797b684c6d8d82ba0107cef58cbb679afdb
|
|
588
|
-
RCTTypeSafety: d2eb5e0e8af9181b24034f5171f9b659994b4678
|
|
589
|
-
React: e5aafc4c18040e8fbe0870a1f6df890d35f5af1d
|
|
590
|
-
React-callinvoker: d345fd762faa4a3d371aedf40332abb09746ca03
|
|
591
|
-
React-Codegen: 821ca0b8a9fb023eef3faab61afd2390658c8f1c
|
|
592
|
-
React-Core: 6e27275ea4a91992f488bcc9c8575ffb564b504b
|
|
593
|
-
React-CoreModules: 6cb0798606e69b33e8271a9da526e3d674bedb2c
|
|
594
|
-
React-cxxreact: 63436ba2c7811121ca978ce60d49aa8786322726
|
|
595
|
-
React-debug: b29cfcf06c990f0ea4b3d6430996baa71dd676af
|
|
596
|
-
React-hermes: 077b82c248fe8e698820717a1d240c8502150c31
|
|
597
|
-
React-jsi: 42edc74ef0479952c32c8659563ab9cd62353a75
|
|
598
|
-
React-jsiexecutor: 95bdf0ab46024ca9849e08739b6abd8fe489cd33
|
|
599
|
-
React-jsinspector: 8e291ed0ab371314de269001d6b9b25db6aabf42
|
|
600
|
-
React-logger: d4010de0b0564e63637ad08373bc73b5d919974b
|
|
601
|
-
React-NativeModulesApple: 694679e4193a49c09f0a76ee27ec09b2c466d59c
|
|
602
|
-
React-perflogger: 63606aeab27683112e1bd4ef25bd099ec1cb03f8
|
|
603
|
-
React-RCTActionSheet: 5b39fc2b479d47325e5ac95193c482044bfebbc6
|
|
604
|
-
React-RCTAnimation: d684a1de0e20c53e31376738839d1cda56b60486
|
|
605
|
-
React-RCTAppDelegate: 3099e9aebf2f821503e65432e09a9423a37d767a
|
|
606
|
-
React-RCTBlob: 0dcf271322ba0c0406fcd4a3f87cd7d951dfcc37
|
|
607
|
-
React-RCTImage: b8bfa9ed1eecc7bb96d219f8a01f569d490f34fc
|
|
608
|
-
React-RCTLinking: 32c9b7af01937d911010d8ab1963147e31766190
|
|
609
|
-
React-RCTNetwork: c58ad73a25aa6b35258b6c59c0a24018c329fe96
|
|
610
|
-
React-RCTSettings: 87eb46d6ca902981f9356a6d4742f9a453aa8fae
|
|
611
|
-
React-RCTText: 1fc9f2052720a6587964721b9c4542c9a0e984c0
|
|
612
|
-
React-RCTVibration: ff75e7530a22dc80a27fffdc07a2785d6bdf4f8e
|
|
613
|
-
React-rncore: 52247442683082756b2fb3de145fb8149f15d1f6
|
|
614
|
-
React-runtimeexecutor: 1c5219c682091392970608972655001103c27d21
|
|
615
|
-
React-runtimescheduler: 8aea338c561b2175f47018124c076d89d3808d30
|
|
616
|
-
React-utils: 9a24cb88f950d1020ee55bddacbc8c16a611e2dc
|
|
617
|
-
ReactCommon: 76843a9bb140596351ac2786257ac9fe60cafabb
|
|
618
|
-
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
|
619
|
-
Yoga: 87e59f6d458e5061d2421086c5de994b3f7cd151
|
|
620
|
-
|
|
621
|
-
PODFILE CHECKSUM: 264718c7f8770281ad78c029e98ec3e304e1dca5
|
|
622
|
-
|
|
623
|
-
COCOAPODS: 1.14.3
|