@snowplow/react-native-tracker 2.0.0 → 2.1.1
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/.github/workflows/build.yml +10 -5
- package/.github/workflows/deploy.yml +9 -10
- package/.github/workflows/e2e-android.yml +2 -2
- package/.github/workflows/e2e-ios.yml +6 -1
- package/.github/workflows/snyk.yml +1 -1
- package/CHANGELOG +14 -0
- package/CONTRIBUTING.md +2 -2
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/android/build.gradle +1 -1
- package/android/src/main/java/com/snowplow/reactnativetracker/ReactNativeTrackerModule.kt +50 -10
- package/android/src/main/java/com/snowplow/reactnativetracker/util/ConfigUtil.kt +5 -2
- package/android/src/main/java/com/snowplow/reactnativetracker/util/EventUtil.kt +20 -0
- package/android/src/main/java/com/snowplow/reactnativetracker/util/TrackerVersion.kt +1 -1
- package/example/Gemfile +1 -1
- package/example/e2e/emitEvents.e2e.detox.js +0 -13
- package/example/e2e/helpers/microCommands.js +0 -13
- package/example/e2e/helpers/microHelpers.js +0 -13
- package/example/e2e/helpers/microHelpers.test.js +0 -13
- package/example/e2e/helpers/schemas.js +0 -13
- package/example/e2e/testEvents.micro.test.js +1 -14
- package/example/ios/Podfile +0 -2
- package/example/ios/Podfile.lock +194 -201
- package/example/ios/ReactNativeTrackerExample/PrivacyInfo.xcprivacy +37 -0
- package/example/ios/ReactNativeTrackerExample.xcodeproj/project.pbxproj +17 -0
- package/example/package.json +13 -13
- package/example/src/App.js +9 -0
- package/example/yarn.lock +1599 -1275
- package/ios/ReactNativeTracker.mm +10 -0
- package/ios/ReactNativeTracker.swift +71 -6
- package/ios/Util/ConfigUtils.swift +5 -2
- package/ios/Util/TrackerVersion.swift +1 -1
- package/lib/commonjs/api.js +28 -13
- package/lib/commonjs/api.js.map +1 -1
- package/lib/commonjs/configurations.js +1 -14
- package/lib/commonjs/configurations.js.map +1 -1
- package/lib/commonjs/constants.js +6 -14
- package/lib/commonjs/constants.js.map +1 -1
- package/lib/commonjs/events.js +34 -13
- package/lib/commonjs/events.js.map +1 -1
- package/lib/commonjs/index.js +4 -13
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/jsCore.js +49 -15
- package/lib/commonjs/jsCore.js.map +1 -1
- package/lib/commonjs/native.js +0 -13
- package/lib/commonjs/native.js.map +1 -1
- package/lib/commonjs/subject.js +0 -13
- package/lib/commonjs/subject.js.map +1 -1
- package/lib/commonjs/tracker.js +40 -13
- package/lib/commonjs/tracker.js.map +1 -1
- package/lib/commonjs/utils.js +0 -13
- package/lib/commonjs/utils.js.map +1 -1
- package/lib/commonjs/webViewInterface.js +0 -13
- package/lib/commonjs/webViewInterface.js.map +1 -1
- package/lib/module/api.js +27 -14
- package/lib/module/api.js.map +1 -1
- package/lib/module/configurations.js +1 -14
- package/lib/module/configurations.js.map +1 -1
- package/lib/module/constants.js +6 -14
- package/lib/module/constants.js.map +1 -1
- package/lib/module/events.js +33 -14
- package/lib/module/events.js.map +1 -1
- package/lib/module/index.js +4 -13
- package/lib/module/index.js.map +1 -1
- package/lib/module/jsCore.js +49 -15
- package/lib/module/jsCore.js.map +1 -1
- package/lib/module/native.js +0 -13
- package/lib/module/native.js.map +1 -1
- package/lib/module/subject.js +0 -13
- package/lib/module/subject.js.map +1 -1
- package/lib/module/tracker.js +40 -15
- package/lib/module/tracker.js.map +1 -1
- package/lib/module/utils.js +0 -13
- package/lib/module/utils.js.map +1 -1
- package/lib/module/webViewInterface.js +0 -13
- package/lib/module/webViewInterface.js.map +1 -1
- package/lib/typescript/api.d.ts +16 -2
- package/lib/typescript/api.d.ts.map +1 -1
- package/lib/typescript/configurations.d.ts.map +1 -1
- package/lib/typescript/constants.d.ts +5 -0
- package/lib/typescript/constants.d.ts.map +1 -1
- package/lib/typescript/events.d.ts +16 -2
- package/lib/typescript/events.d.ts.map +1 -1
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/jsCore.d.ts +13 -1
- package/lib/typescript/jsCore.d.ts.map +1 -1
- package/lib/typescript/native.d.ts.map +1 -1
- package/lib/typescript/subject.d.ts.map +1 -1
- package/lib/typescript/tracker.d.ts +20 -2
- package/lib/typescript/tracker.d.ts.map +1 -1
- package/lib/typescript/types.d.ts +83 -5
- package/lib/typescript/types.d.ts.map +1 -1
- package/lib/typescript/utils.d.ts.map +1 -1
- package/lib/typescript/webViewInterface.d.ts.map +1 -1
- package/package.json +22 -22
- package/snowplow-react-native-tracker.podspec +1 -1
- package/src/__tests__/api.test.ts +0 -13
- package/src/__tests__/configurations.test.ts +3 -15
- package/src/__tests__/events.test.ts +0 -13
- package/src/__tests__/index.test.ts +0 -13
- package/src/__tests__/jsCore.test.ts +43 -13
- package/src/__tests__/utils.test.ts +0 -13
- package/src/api.ts +34 -13
- package/src/configurations.ts +1 -13
- package/src/constants.ts +8 -13
- package/src/events.ts +38 -13
- package/src/index.ts +8 -13
- package/src/jsCore.ts +65 -15
- package/src/native.ts +0 -13
- package/src/subject.ts +0 -13
- package/src/tracker.ts +60 -13
- package/src/types.ts +93 -18
- package/src/utils.ts +0 -13
- package/src/webViewInterface.ts +0 -13
- package/yarn.lock +1600 -1535
package/example/ios/Podfile.lock
CHANGED
|
@@ -2,14 +2,14 @@ PODS:
|
|
|
2
2
|
- boost (1.76.0)
|
|
3
3
|
- CocoaAsyncSocket (7.6.5)
|
|
4
4
|
- DoubleConversion (1.1.6)
|
|
5
|
-
- FBLazyVector (0.72.
|
|
6
|
-
- FBReactNativeSpec (0.72.
|
|
7
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
8
|
-
- RCTRequired (= 0.72.
|
|
9
|
-
- RCTTypeSafety (= 0.72.
|
|
10
|
-
- React-Core (= 0.72.
|
|
11
|
-
- React-jsi (= 0.72.
|
|
12
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
5
|
+
- FBLazyVector (0.72.15)
|
|
6
|
+
- FBReactNativeSpec (0.72.15):
|
|
7
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
8
|
+
- RCTRequired (= 0.72.15)
|
|
9
|
+
- RCTTypeSafety (= 0.72.15)
|
|
10
|
+
- React-Core (= 0.72.15)
|
|
11
|
+
- React-jsi (= 0.72.15)
|
|
12
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
13
13
|
- Flipper (0.182.0):
|
|
14
14
|
- Flipper-Folly (~> 2.6)
|
|
15
15
|
- Flipper-Boost-iOSX (1.76.0.1.11)
|
|
@@ -68,14 +68,11 @@ PODS:
|
|
|
68
68
|
- FlipperKit/SKIOSNetworkPlugin (0.182.0):
|
|
69
69
|
- FlipperKit/Core
|
|
70
70
|
- FlipperKit/FlipperKitNetworkPlugin
|
|
71
|
-
- FMDB (2.7.5):
|
|
72
|
-
- FMDB/standard (= 2.7.5)
|
|
73
|
-
- FMDB/standard (2.7.5)
|
|
74
71
|
- fmt (6.2.1)
|
|
75
72
|
- glog (0.3.5)
|
|
76
|
-
- hermes-engine (0.72.
|
|
77
|
-
- hermes-engine/Pre-built (= 0.72.
|
|
78
|
-
- hermes-engine/Pre-built (0.72.
|
|
73
|
+
- hermes-engine (0.72.15):
|
|
74
|
+
- hermes-engine/Pre-built (= 0.72.15)
|
|
75
|
+
- hermes-engine/Pre-built (0.72.15)
|
|
79
76
|
- libevent (2.1.12)
|
|
80
77
|
- OpenSSL-Universal (1.1.1100)
|
|
81
78
|
- RCT-Folly (2021.07.22.00):
|
|
@@ -95,26 +92,26 @@ PODS:
|
|
|
95
92
|
- fmt (~> 6.2.1)
|
|
96
93
|
- glog
|
|
97
94
|
- libevent
|
|
98
|
-
- RCTRequired (0.72.
|
|
99
|
-
- RCTTypeSafety (0.72.
|
|
100
|
-
- FBLazyVector (= 0.72.
|
|
101
|
-
- RCTRequired (= 0.72.
|
|
102
|
-
- React-Core (= 0.72.
|
|
103
|
-
- React (0.72.
|
|
104
|
-
- React-Core (= 0.72.
|
|
105
|
-
- React-Core/DevSupport (= 0.72.
|
|
106
|
-
- React-Core/RCTWebSocket (= 0.72.
|
|
107
|
-
- React-RCTActionSheet (= 0.72.
|
|
108
|
-
- React-RCTAnimation (= 0.72.
|
|
109
|
-
- React-RCTBlob (= 0.72.
|
|
110
|
-
- React-RCTImage (= 0.72.
|
|
111
|
-
- React-RCTLinking (= 0.72.
|
|
112
|
-
- React-RCTNetwork (= 0.72.
|
|
113
|
-
- React-RCTSettings (= 0.72.
|
|
114
|
-
- React-RCTText (= 0.72.
|
|
115
|
-
- React-RCTVibration (= 0.72.
|
|
116
|
-
- React-callinvoker (0.72.
|
|
117
|
-
- React-Codegen (0.72.
|
|
95
|
+
- RCTRequired (0.72.15)
|
|
96
|
+
- RCTTypeSafety (0.72.15):
|
|
97
|
+
- FBLazyVector (= 0.72.15)
|
|
98
|
+
- RCTRequired (= 0.72.15)
|
|
99
|
+
- React-Core (= 0.72.15)
|
|
100
|
+
- React (0.72.15):
|
|
101
|
+
- React-Core (= 0.72.15)
|
|
102
|
+
- React-Core/DevSupport (= 0.72.15)
|
|
103
|
+
- React-Core/RCTWebSocket (= 0.72.15)
|
|
104
|
+
- React-RCTActionSheet (= 0.72.15)
|
|
105
|
+
- React-RCTAnimation (= 0.72.15)
|
|
106
|
+
- React-RCTBlob (= 0.72.15)
|
|
107
|
+
- React-RCTImage (= 0.72.15)
|
|
108
|
+
- React-RCTLinking (= 0.72.15)
|
|
109
|
+
- React-RCTNetwork (= 0.72.15)
|
|
110
|
+
- React-RCTSettings (= 0.72.15)
|
|
111
|
+
- React-RCTText (= 0.72.15)
|
|
112
|
+
- React-RCTVibration (= 0.72.15)
|
|
113
|
+
- React-callinvoker (0.72.15)
|
|
114
|
+
- React-Codegen (0.72.15):
|
|
118
115
|
- DoubleConversion
|
|
119
116
|
- FBReactNativeSpec
|
|
120
117
|
- glog
|
|
@@ -129,11 +126,11 @@ PODS:
|
|
|
129
126
|
- React-rncore
|
|
130
127
|
- ReactCommon/turbomodule/bridging
|
|
131
128
|
- ReactCommon/turbomodule/core
|
|
132
|
-
- React-Core (0.72.
|
|
129
|
+
- React-Core (0.72.15):
|
|
133
130
|
- glog
|
|
134
131
|
- hermes-engine
|
|
135
132
|
- RCT-Folly (= 2021.07.22.00)
|
|
136
|
-
- React-Core/Default (= 0.72.
|
|
133
|
+
- React-Core/Default (= 0.72.15)
|
|
137
134
|
- React-cxxreact
|
|
138
135
|
- React-hermes
|
|
139
136
|
- React-jsi
|
|
@@ -143,7 +140,7 @@ PODS:
|
|
|
143
140
|
- React-utils
|
|
144
141
|
- SocketRocket (= 0.6.1)
|
|
145
142
|
- Yoga
|
|
146
|
-
- React-Core/CoreModulesHeaders (0.72.
|
|
143
|
+
- React-Core/CoreModulesHeaders (0.72.15):
|
|
147
144
|
- glog
|
|
148
145
|
- hermes-engine
|
|
149
146
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -157,7 +154,7 @@ PODS:
|
|
|
157
154
|
- React-utils
|
|
158
155
|
- SocketRocket (= 0.6.1)
|
|
159
156
|
- Yoga
|
|
160
|
-
- React-Core/Default (0.72.
|
|
157
|
+
- React-Core/Default (0.72.15):
|
|
161
158
|
- glog
|
|
162
159
|
- hermes-engine
|
|
163
160
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -170,23 +167,23 @@ PODS:
|
|
|
170
167
|
- React-utils
|
|
171
168
|
- SocketRocket (= 0.6.1)
|
|
172
169
|
- Yoga
|
|
173
|
-
- React-Core/DevSupport (0.72.
|
|
170
|
+
- React-Core/DevSupport (0.72.15):
|
|
174
171
|
- glog
|
|
175
172
|
- hermes-engine
|
|
176
173
|
- RCT-Folly (= 2021.07.22.00)
|
|
177
|
-
- React-Core/Default (= 0.72.
|
|
178
|
-
- React-Core/RCTWebSocket (= 0.72.
|
|
174
|
+
- React-Core/Default (= 0.72.15)
|
|
175
|
+
- React-Core/RCTWebSocket (= 0.72.15)
|
|
179
176
|
- React-cxxreact
|
|
180
177
|
- React-hermes
|
|
181
178
|
- React-jsi
|
|
182
179
|
- React-jsiexecutor
|
|
183
|
-
- React-jsinspector (= 0.72.
|
|
180
|
+
- React-jsinspector (= 0.72.15)
|
|
184
181
|
- React-perflogger
|
|
185
182
|
- React-runtimeexecutor
|
|
186
183
|
- React-utils
|
|
187
184
|
- SocketRocket (= 0.6.1)
|
|
188
185
|
- Yoga
|
|
189
|
-
- React-Core/RCTActionSheetHeaders (0.72.
|
|
186
|
+
- React-Core/RCTActionSheetHeaders (0.72.15):
|
|
190
187
|
- glog
|
|
191
188
|
- hermes-engine
|
|
192
189
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -200,7 +197,7 @@ PODS:
|
|
|
200
197
|
- React-utils
|
|
201
198
|
- SocketRocket (= 0.6.1)
|
|
202
199
|
- Yoga
|
|
203
|
-
- React-Core/RCTAnimationHeaders (0.72.
|
|
200
|
+
- React-Core/RCTAnimationHeaders (0.72.15):
|
|
204
201
|
- glog
|
|
205
202
|
- hermes-engine
|
|
206
203
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -214,7 +211,7 @@ PODS:
|
|
|
214
211
|
- React-utils
|
|
215
212
|
- SocketRocket (= 0.6.1)
|
|
216
213
|
- Yoga
|
|
217
|
-
- React-Core/RCTBlobHeaders (0.72.
|
|
214
|
+
- React-Core/RCTBlobHeaders (0.72.15):
|
|
218
215
|
- glog
|
|
219
216
|
- hermes-engine
|
|
220
217
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -228,7 +225,7 @@ PODS:
|
|
|
228
225
|
- React-utils
|
|
229
226
|
- SocketRocket (= 0.6.1)
|
|
230
227
|
- Yoga
|
|
231
|
-
- React-Core/RCTImageHeaders (0.72.
|
|
228
|
+
- React-Core/RCTImageHeaders (0.72.15):
|
|
232
229
|
- glog
|
|
233
230
|
- hermes-engine
|
|
234
231
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -242,7 +239,7 @@ PODS:
|
|
|
242
239
|
- React-utils
|
|
243
240
|
- SocketRocket (= 0.6.1)
|
|
244
241
|
- Yoga
|
|
245
|
-
- React-Core/RCTLinkingHeaders (0.72.
|
|
242
|
+
- React-Core/RCTLinkingHeaders (0.72.15):
|
|
246
243
|
- glog
|
|
247
244
|
- hermes-engine
|
|
248
245
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -256,7 +253,7 @@ PODS:
|
|
|
256
253
|
- React-utils
|
|
257
254
|
- SocketRocket (= 0.6.1)
|
|
258
255
|
- Yoga
|
|
259
|
-
- React-Core/RCTNetworkHeaders (0.72.
|
|
256
|
+
- React-Core/RCTNetworkHeaders (0.72.15):
|
|
260
257
|
- glog
|
|
261
258
|
- hermes-engine
|
|
262
259
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -270,7 +267,7 @@ PODS:
|
|
|
270
267
|
- React-utils
|
|
271
268
|
- SocketRocket (= 0.6.1)
|
|
272
269
|
- Yoga
|
|
273
|
-
- React-Core/RCTSettingsHeaders (0.72.
|
|
270
|
+
- React-Core/RCTSettingsHeaders (0.72.15):
|
|
274
271
|
- glog
|
|
275
272
|
- hermes-engine
|
|
276
273
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -284,7 +281,7 @@ PODS:
|
|
|
284
281
|
- React-utils
|
|
285
282
|
- SocketRocket (= 0.6.1)
|
|
286
283
|
- Yoga
|
|
287
|
-
- React-Core/RCTTextHeaders (0.72.
|
|
284
|
+
- React-Core/RCTTextHeaders (0.72.15):
|
|
288
285
|
- glog
|
|
289
286
|
- hermes-engine
|
|
290
287
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -298,7 +295,7 @@ PODS:
|
|
|
298
295
|
- React-utils
|
|
299
296
|
- SocketRocket (= 0.6.1)
|
|
300
297
|
- Yoga
|
|
301
|
-
- React-Core/RCTVibrationHeaders (0.72.
|
|
298
|
+
- React-Core/RCTVibrationHeaders (0.72.15):
|
|
302
299
|
- glog
|
|
303
300
|
- hermes-engine
|
|
304
301
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -312,11 +309,11 @@ PODS:
|
|
|
312
309
|
- React-utils
|
|
313
310
|
- SocketRocket (= 0.6.1)
|
|
314
311
|
- Yoga
|
|
315
|
-
- React-Core/RCTWebSocket (0.72.
|
|
312
|
+
- React-Core/RCTWebSocket (0.72.15):
|
|
316
313
|
- glog
|
|
317
314
|
- hermes-engine
|
|
318
315
|
- RCT-Folly (= 2021.07.22.00)
|
|
319
|
-
- React-Core/Default (= 0.72.
|
|
316
|
+
- React-Core/Default (= 0.72.15)
|
|
320
317
|
- React-cxxreact
|
|
321
318
|
- React-hermes
|
|
322
319
|
- React-jsi
|
|
@@ -326,61 +323,62 @@ PODS:
|
|
|
326
323
|
- React-utils
|
|
327
324
|
- SocketRocket (= 0.6.1)
|
|
328
325
|
- Yoga
|
|
329
|
-
- React-CoreModules (0.72.
|
|
326
|
+
- React-CoreModules (0.72.15):
|
|
330
327
|
- RCT-Folly (= 2021.07.22.00)
|
|
331
|
-
- RCTTypeSafety (= 0.72.
|
|
332
|
-
- React-Codegen (= 0.72.
|
|
333
|
-
- React-Core/CoreModulesHeaders (= 0.72.
|
|
334
|
-
- React-jsi (= 0.72.
|
|
328
|
+
- RCTTypeSafety (= 0.72.15)
|
|
329
|
+
- React-Codegen (= 0.72.15)
|
|
330
|
+
- React-Core/CoreModulesHeaders (= 0.72.15)
|
|
331
|
+
- React-jsi (= 0.72.15)
|
|
335
332
|
- React-RCTBlob
|
|
336
|
-
- React-RCTImage (= 0.72.
|
|
337
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
333
|
+
- React-RCTImage (= 0.72.15)
|
|
334
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
338
335
|
- SocketRocket (= 0.6.1)
|
|
339
|
-
- React-cxxreact (0.72.
|
|
336
|
+
- React-cxxreact (0.72.15):
|
|
340
337
|
- boost (= 1.76.0)
|
|
341
338
|
- DoubleConversion
|
|
342
339
|
- glog
|
|
343
340
|
- hermes-engine
|
|
344
341
|
- RCT-Folly (= 2021.07.22.00)
|
|
345
|
-
- React-callinvoker (= 0.72.
|
|
346
|
-
- React-debug (= 0.72.
|
|
347
|
-
- React-jsi (= 0.72.
|
|
348
|
-
- React-jsinspector (= 0.72.
|
|
349
|
-
- React-logger (= 0.72.
|
|
350
|
-
- React-perflogger (= 0.72.
|
|
351
|
-
- React-runtimeexecutor (= 0.72.
|
|
352
|
-
- React-debug (0.72.
|
|
353
|
-
- React-hermes (0.72.
|
|
342
|
+
- React-callinvoker (= 0.72.15)
|
|
343
|
+
- React-debug (= 0.72.15)
|
|
344
|
+
- React-jsi (= 0.72.15)
|
|
345
|
+
- React-jsinspector (= 0.72.15)
|
|
346
|
+
- React-logger (= 0.72.15)
|
|
347
|
+
- React-perflogger (= 0.72.15)
|
|
348
|
+
- React-runtimeexecutor (= 0.72.15)
|
|
349
|
+
- React-debug (0.72.15)
|
|
350
|
+
- React-hermes (0.72.15):
|
|
354
351
|
- DoubleConversion
|
|
355
352
|
- glog
|
|
356
353
|
- hermes-engine
|
|
357
354
|
- RCT-Folly (= 2021.07.22.00)
|
|
358
355
|
- RCT-Folly/Futures (= 2021.07.22.00)
|
|
359
|
-
- React-cxxreact (= 0.72.
|
|
356
|
+
- React-cxxreact (= 0.72.15)
|
|
360
357
|
- React-jsi
|
|
361
|
-
- React-jsiexecutor (= 0.72.
|
|
362
|
-
- React-jsinspector (= 0.72.
|
|
363
|
-
- React-perflogger (= 0.72.
|
|
364
|
-
- React-jsi (0.72.
|
|
358
|
+
- React-jsiexecutor (= 0.72.15)
|
|
359
|
+
- React-jsinspector (= 0.72.15)
|
|
360
|
+
- React-perflogger (= 0.72.15)
|
|
361
|
+
- React-jsi (0.72.15):
|
|
365
362
|
- boost (= 1.76.0)
|
|
366
363
|
- DoubleConversion
|
|
367
364
|
- glog
|
|
368
365
|
- hermes-engine
|
|
369
366
|
- RCT-Folly (= 2021.07.22.00)
|
|
370
|
-
- React-jsiexecutor (0.72.
|
|
367
|
+
- React-jsiexecutor (0.72.15):
|
|
371
368
|
- DoubleConversion
|
|
372
369
|
- glog
|
|
373
370
|
- hermes-engine
|
|
374
371
|
- RCT-Folly (= 2021.07.22.00)
|
|
375
|
-
- React-cxxreact (= 0.72.
|
|
376
|
-
- React-jsi (= 0.72.
|
|
377
|
-
- React-perflogger (= 0.72.
|
|
378
|
-
- React-jsinspector (0.72.
|
|
379
|
-
- React-logger (0.72.
|
|
372
|
+
- React-cxxreact (= 0.72.15)
|
|
373
|
+
- React-jsi (= 0.72.15)
|
|
374
|
+
- React-perflogger (= 0.72.15)
|
|
375
|
+
- React-jsinspector (0.72.15)
|
|
376
|
+
- React-logger (0.72.15):
|
|
380
377
|
- glog
|
|
381
|
-
- react-native-webview (13.
|
|
378
|
+
- react-native-webview (13.10.4):
|
|
379
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
382
380
|
- React-Core
|
|
383
|
-
- React-NativeModulesApple (0.72.
|
|
381
|
+
- React-NativeModulesApple (0.72.15):
|
|
384
382
|
- hermes-engine
|
|
385
383
|
- React-callinvoker
|
|
386
384
|
- React-Core
|
|
@@ -389,17 +387,17 @@ PODS:
|
|
|
389
387
|
- React-runtimeexecutor
|
|
390
388
|
- ReactCommon/turbomodule/bridging
|
|
391
389
|
- ReactCommon/turbomodule/core
|
|
392
|
-
- React-perflogger (0.72.
|
|
393
|
-
- React-RCTActionSheet (0.72.
|
|
394
|
-
- React-Core/RCTActionSheetHeaders (= 0.72.
|
|
395
|
-
- React-RCTAnimation (0.72.
|
|
396
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
397
|
-
- RCTTypeSafety (= 0.72.
|
|
398
|
-
- React-Codegen (= 0.72.
|
|
399
|
-
- React-Core/RCTAnimationHeaders (= 0.72.
|
|
400
|
-
- React-jsi (= 0.72.
|
|
401
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
402
|
-
- React-RCTAppDelegate (0.72.
|
|
390
|
+
- React-perflogger (0.72.15)
|
|
391
|
+
- React-RCTActionSheet (0.72.15):
|
|
392
|
+
- React-Core/RCTActionSheetHeaders (= 0.72.15)
|
|
393
|
+
- React-RCTAnimation (0.72.15):
|
|
394
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
395
|
+
- RCTTypeSafety (= 0.72.15)
|
|
396
|
+
- React-Codegen (= 0.72.15)
|
|
397
|
+
- React-Core/RCTAnimationHeaders (= 0.72.15)
|
|
398
|
+
- React-jsi (= 0.72.15)
|
|
399
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
400
|
+
- React-RCTAppDelegate (0.72.15):
|
|
403
401
|
- RCT-Folly
|
|
404
402
|
- RCTRequired
|
|
405
403
|
- RCTTypeSafety
|
|
@@ -411,54 +409,54 @@ PODS:
|
|
|
411
409
|
- React-RCTNetwork
|
|
412
410
|
- React-runtimescheduler
|
|
413
411
|
- ReactCommon/turbomodule/core
|
|
414
|
-
- React-RCTBlob (0.72.
|
|
412
|
+
- React-RCTBlob (0.72.15):
|
|
415
413
|
- hermes-engine
|
|
416
414
|
- RCT-Folly (= 2021.07.22.00)
|
|
417
|
-
- React-Codegen (= 0.72.
|
|
418
|
-
- React-Core/RCTBlobHeaders (= 0.72.
|
|
419
|
-
- React-Core/RCTWebSocket (= 0.72.
|
|
420
|
-
- React-jsi (= 0.72.
|
|
421
|
-
- React-RCTNetwork (= 0.72.
|
|
422
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
423
|
-
- React-RCTImage (0.72.
|
|
424
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
425
|
-
- RCTTypeSafety (= 0.72.
|
|
426
|
-
- React-Codegen (= 0.72.
|
|
427
|
-
- React-Core/RCTImageHeaders (= 0.72.
|
|
428
|
-
- React-jsi (= 0.72.
|
|
429
|
-
- React-RCTNetwork (= 0.72.
|
|
430
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
431
|
-
- React-RCTLinking (0.72.
|
|
432
|
-
- React-Codegen (= 0.72.
|
|
433
|
-
- React-Core/RCTLinkingHeaders (= 0.72.
|
|
434
|
-
- React-jsi (= 0.72.
|
|
435
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
436
|
-
- React-RCTNetwork (0.72.
|
|
437
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
438
|
-
- RCTTypeSafety (= 0.72.
|
|
439
|
-
- React-Codegen (= 0.72.
|
|
440
|
-
- React-Core/RCTNetworkHeaders (= 0.72.
|
|
441
|
-
- React-jsi (= 0.72.
|
|
442
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
443
|
-
- React-RCTSettings (0.72.
|
|
444
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
445
|
-
- RCTTypeSafety (= 0.72.
|
|
446
|
-
- React-Codegen (= 0.72.
|
|
447
|
-
- React-Core/RCTSettingsHeaders (= 0.72.
|
|
448
|
-
- React-jsi (= 0.72.
|
|
449
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
450
|
-
- React-RCTText (0.72.
|
|
451
|
-
- React-Core/RCTTextHeaders (= 0.72.
|
|
452
|
-
- React-RCTVibration (0.72.
|
|
453
|
-
- RCT-Folly (= 2021.07.22.00)
|
|
454
|
-
- React-Codegen (= 0.72.
|
|
455
|
-
- React-Core/RCTVibrationHeaders (= 0.72.
|
|
456
|
-
- React-jsi (= 0.72.
|
|
457
|
-
- ReactCommon/turbomodule/core (= 0.72.
|
|
458
|
-
- React-rncore (0.72.
|
|
459
|
-
- React-runtimeexecutor (0.72.
|
|
460
|
-
- React-jsi (= 0.72.
|
|
461
|
-
- React-runtimescheduler (0.72.
|
|
415
|
+
- React-Codegen (= 0.72.15)
|
|
416
|
+
- React-Core/RCTBlobHeaders (= 0.72.15)
|
|
417
|
+
- React-Core/RCTWebSocket (= 0.72.15)
|
|
418
|
+
- React-jsi (= 0.72.15)
|
|
419
|
+
- React-RCTNetwork (= 0.72.15)
|
|
420
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
421
|
+
- React-RCTImage (0.72.15):
|
|
422
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
423
|
+
- RCTTypeSafety (= 0.72.15)
|
|
424
|
+
- React-Codegen (= 0.72.15)
|
|
425
|
+
- React-Core/RCTImageHeaders (= 0.72.15)
|
|
426
|
+
- React-jsi (= 0.72.15)
|
|
427
|
+
- React-RCTNetwork (= 0.72.15)
|
|
428
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
429
|
+
- React-RCTLinking (0.72.15):
|
|
430
|
+
- React-Codegen (= 0.72.15)
|
|
431
|
+
- React-Core/RCTLinkingHeaders (= 0.72.15)
|
|
432
|
+
- React-jsi (= 0.72.15)
|
|
433
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
434
|
+
- React-RCTNetwork (0.72.15):
|
|
435
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
436
|
+
- RCTTypeSafety (= 0.72.15)
|
|
437
|
+
- React-Codegen (= 0.72.15)
|
|
438
|
+
- React-Core/RCTNetworkHeaders (= 0.72.15)
|
|
439
|
+
- React-jsi (= 0.72.15)
|
|
440
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
441
|
+
- React-RCTSettings (0.72.15):
|
|
442
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
443
|
+
- RCTTypeSafety (= 0.72.15)
|
|
444
|
+
- React-Codegen (= 0.72.15)
|
|
445
|
+
- React-Core/RCTSettingsHeaders (= 0.72.15)
|
|
446
|
+
- React-jsi (= 0.72.15)
|
|
447
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
448
|
+
- React-RCTText (0.72.15):
|
|
449
|
+
- React-Core/RCTTextHeaders (= 0.72.15)
|
|
450
|
+
- React-RCTVibration (0.72.15):
|
|
451
|
+
- RCT-Folly (= 2021.07.22.00)
|
|
452
|
+
- React-Codegen (= 0.72.15)
|
|
453
|
+
- React-Core/RCTVibrationHeaders (= 0.72.15)
|
|
454
|
+
- React-jsi (= 0.72.15)
|
|
455
|
+
- ReactCommon/turbomodule/core (= 0.72.15)
|
|
456
|
+
- React-rncore (0.72.15)
|
|
457
|
+
- React-runtimeexecutor (0.72.15):
|
|
458
|
+
- React-jsi (= 0.72.15)
|
|
459
|
+
- React-runtimescheduler (0.72.15):
|
|
462
460
|
- glog
|
|
463
461
|
- hermes-engine
|
|
464
462
|
- RCT-Folly (= 2021.07.22.00)
|
|
@@ -466,36 +464,35 @@ PODS:
|
|
|
466
464
|
- React-debug
|
|
467
465
|
- React-jsi
|
|
468
466
|
- React-runtimeexecutor
|
|
469
|
-
- React-utils (0.72.
|
|
467
|
+
- React-utils (0.72.15):
|
|
470
468
|
- glog
|
|
471
469
|
- RCT-Folly (= 2021.07.22.00)
|
|
472
470
|
- React-debug
|
|
473
|
-
- ReactCommon/turbomodule/bridging (0.72.
|
|
471
|
+
- ReactCommon/turbomodule/bridging (0.72.15):
|
|
474
472
|
- DoubleConversion
|
|
475
473
|
- glog
|
|
476
474
|
- hermes-engine
|
|
477
475
|
- RCT-Folly (= 2021.07.22.00)
|
|
478
|
-
- React-callinvoker (= 0.72.
|
|
479
|
-
- React-cxxreact (= 0.72.
|
|
480
|
-
- React-jsi (= 0.72.
|
|
481
|
-
- React-logger (= 0.72.
|
|
482
|
-
- React-perflogger (= 0.72.
|
|
483
|
-
- ReactCommon/turbomodule/core (0.72.
|
|
476
|
+
- React-callinvoker (= 0.72.15)
|
|
477
|
+
- React-cxxreact (= 0.72.15)
|
|
478
|
+
- React-jsi (= 0.72.15)
|
|
479
|
+
- React-logger (= 0.72.15)
|
|
480
|
+
- React-perflogger (= 0.72.15)
|
|
481
|
+
- ReactCommon/turbomodule/core (0.72.15):
|
|
484
482
|
- DoubleConversion
|
|
485
483
|
- glog
|
|
486
484
|
- hermes-engine
|
|
487
485
|
- RCT-Folly (= 2021.07.22.00)
|
|
488
|
-
- React-callinvoker (= 0.72.
|
|
489
|
-
- React-cxxreact (= 0.72.
|
|
490
|
-
- React-jsi (= 0.72.
|
|
491
|
-
- React-logger (= 0.72.
|
|
492
|
-
- React-perflogger (= 0.72.
|
|
493
|
-
- snowplow-react-native-tracker (2.
|
|
486
|
+
- React-callinvoker (= 0.72.15)
|
|
487
|
+
- React-cxxreact (= 0.72.15)
|
|
488
|
+
- React-jsi (= 0.72.15)
|
|
489
|
+
- React-logger (= 0.72.15)
|
|
490
|
+
- React-perflogger (= 0.72.15)
|
|
491
|
+
- snowplow-react-native-tracker (2.1.1):
|
|
494
492
|
- RCT-Folly (= 2021.07.22.00)
|
|
495
493
|
- React-Core
|
|
496
|
-
- SnowplowTracker (~>
|
|
497
|
-
- SnowplowTracker (
|
|
498
|
-
- FMDB (~> 2.7)
|
|
494
|
+
- SnowplowTracker (~> 6.0)
|
|
495
|
+
- SnowplowTracker (6.0.1)
|
|
499
496
|
- SocketRocket (0.6.1)
|
|
500
497
|
- Yoga (1.14.0)
|
|
501
498
|
- YogaKit (1.18.1):
|
|
@@ -526,7 +523,6 @@ DEPENDENCIES:
|
|
|
526
523
|
- FlipperKit/FlipperKitReactPlugin (= 0.182.0)
|
|
527
524
|
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.182.0)
|
|
528
525
|
- FlipperKit/SKIOSNetworkPlugin (= 0.182.0)
|
|
529
|
-
- FMDB
|
|
530
526
|
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
531
527
|
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
|
|
532
528
|
- libevent (~> 2.1.12)
|
|
@@ -580,7 +576,6 @@ SPEC REPOS:
|
|
|
580
576
|
- Flipper-Glog
|
|
581
577
|
- Flipper-PeerTalk
|
|
582
578
|
- FlipperKit
|
|
583
|
-
- FMDB
|
|
584
579
|
- fmt
|
|
585
580
|
- libevent
|
|
586
581
|
- OpenSSL-Universal
|
|
@@ -601,7 +596,6 @@ EXTERNAL SOURCES:
|
|
|
601
596
|
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
602
597
|
hermes-engine:
|
|
603
598
|
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
|
|
604
|
-
:tag: hermes-2023-08-07-RNv0.72.4-813b2def12bc9df02654b3e3653ae4a68d0572e0
|
|
605
599
|
RCT-Folly:
|
|
606
600
|
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
607
601
|
RCTRequired:
|
|
@@ -677,8 +671,8 @@ SPEC CHECKSUMS:
|
|
|
677
671
|
boost: 57d2868c099736d80fcd648bf211b4431e51a558
|
|
678
672
|
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
|
679
673
|
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
|
680
|
-
FBLazyVector:
|
|
681
|
-
FBReactNativeSpec:
|
|
674
|
+
FBLazyVector: 25cbffbaec517695d376ab4bc428948cd0f08088
|
|
675
|
+
FBReactNativeSpec: e03b22fbf7017a6f76641ea4472e73c915dcdda7
|
|
682
676
|
Flipper: 6edb735e6c3e332975d1b17956bcc584eccf5818
|
|
683
677
|
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
|
|
684
678
|
Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
|
|
@@ -687,51 +681,50 @@ SPEC CHECKSUMS:
|
|
|
687
681
|
Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
|
|
688
682
|
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
|
689
683
|
FlipperKit: 2efad7007d6745a3f95e4034d547be637f89d3f6
|
|
690
|
-
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
|
|
691
684
|
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
692
685
|
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
|
693
|
-
hermes-engine:
|
|
686
|
+
hermes-engine: 5b340c6a5affbf3aba22185be41563bbb2426654
|
|
694
687
|
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
|
695
688
|
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
|
|
696
689
|
RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1
|
|
697
|
-
RCTRequired:
|
|
698
|
-
RCTTypeSafety:
|
|
699
|
-
React:
|
|
700
|
-
React-callinvoker:
|
|
701
|
-
React-Codegen:
|
|
702
|
-
React-Core:
|
|
703
|
-
React-CoreModules:
|
|
704
|
-
React-cxxreact:
|
|
705
|
-
React-debug:
|
|
706
|
-
React-hermes:
|
|
707
|
-
React-jsi:
|
|
708
|
-
React-jsiexecutor:
|
|
709
|
-
React-jsinspector:
|
|
710
|
-
React-logger:
|
|
711
|
-
react-native-webview:
|
|
712
|
-
React-NativeModulesApple:
|
|
713
|
-
React-perflogger:
|
|
714
|
-
React-RCTActionSheet:
|
|
715
|
-
React-RCTAnimation:
|
|
716
|
-
React-RCTAppDelegate:
|
|
717
|
-
React-RCTBlob:
|
|
718
|
-
React-RCTImage:
|
|
719
|
-
React-RCTLinking:
|
|
720
|
-
React-RCTNetwork:
|
|
721
|
-
React-RCTSettings:
|
|
722
|
-
React-RCTText:
|
|
723
|
-
React-RCTVibration:
|
|
724
|
-
React-rncore:
|
|
725
|
-
React-runtimeexecutor:
|
|
726
|
-
React-runtimescheduler:
|
|
727
|
-
React-utils:
|
|
728
|
-
ReactCommon:
|
|
729
|
-
snowplow-react-native-tracker:
|
|
730
|
-
SnowplowTracker:
|
|
690
|
+
RCTRequired: fb207f74935626041e7308c9e88dcdda680f1073
|
|
691
|
+
RCTTypeSafety: 146fd11361680250b7580dd1f7f601995cfad1b1
|
|
692
|
+
React: f3712351445cc96ba507425675a0cd8d31321d0c
|
|
693
|
+
React-callinvoker: dcc51a66e02d20a70aeca2abbb1388d4d3011bf8
|
|
694
|
+
React-Codegen: d64399cfcc319735a4f61c2f7df64fdfee9f7307
|
|
695
|
+
React-Core: f8ceb3440b6cf30ce4eea884ed77990b7f9bec13
|
|
696
|
+
React-CoreModules: 9d1e6f44bf658431a3b99561c8058b54b5959190
|
|
697
|
+
React-cxxreact: 2150e05cdd30c815c1bf27f41062cd33832ffe31
|
|
698
|
+
React-debug: 4e90d08c78aa207c064a3860e1540ff252695585
|
|
699
|
+
React-hermes: 1ed296db543b7fdb01916a8e56255fcea0758264
|
|
700
|
+
React-jsi: af5a8eaca28d67822fb14c648486d40737d2d2ab
|
|
701
|
+
React-jsiexecutor: d3eef5ddc78eeb9f0d02bed657a7f41d4910b966
|
|
702
|
+
React-jsinspector: b86a8abae760c28d69366bbc1d991561e51341ed
|
|
703
|
+
React-logger: ed7c9e01e58529065e7da6bf8318baf15024283e
|
|
704
|
+
react-native-webview: 50b995b6f59fd84010a1c1b3b2b782744d2d4c1b
|
|
705
|
+
React-NativeModulesApple: ee36a33f5ad8d80487c43e6b4370ea2eaaa81750
|
|
706
|
+
React-perflogger: 6acc671f527e69c0cd93b8e62821d33d3ddf25ca
|
|
707
|
+
React-RCTActionSheet: 569bb9db46d85565d14697e15ecf2166e035eb07
|
|
708
|
+
React-RCTAnimation: 0eea98143c2938a8751a33722623d3e8a38fe1e4
|
|
709
|
+
React-RCTAppDelegate: b4511be9c9c947ef53c9a26c996139cd903bfdc9
|
|
710
|
+
React-RCTBlob: e6fd9d6b975faf765fdc29a959e8e79eb0bb65a0
|
|
711
|
+
React-RCTImage: 0220975422a367e784dfd794adfc6454fab23c1f
|
|
712
|
+
React-RCTLinking: 1abf9834017e080ecbd5b6a28b4fb15eb843a3dd
|
|
713
|
+
React-RCTNetwork: 5ed275bf87d97a7ba5218cf245b1f103e96f82cd
|
|
714
|
+
React-RCTSettings: 1d070387f01b3b01543fb2a4ef867ad0004f6a78
|
|
715
|
+
React-RCTText: 82562208357b11285ffa8d7b33a9d769612a8101
|
|
716
|
+
React-RCTVibration: 372a12b697a170aaee792f8a9999c40e1f2692d0
|
|
717
|
+
React-rncore: d1ccbd5adaf4a67703790838b7c62f140e72d32a
|
|
718
|
+
React-runtimeexecutor: d4f7ff5073fcf87e14dbf89541d434218630246e
|
|
719
|
+
React-runtimescheduler: ae08ede2e0267be2a4d8ba82a54d5908949d5a34
|
|
720
|
+
React-utils: 8eb3c12fd4a4da6df3824f7d9a961d73a6ed6e5d
|
|
721
|
+
ReactCommon: d2de36ed3eebe700d7169b9e80f7d1a4b98e178d
|
|
722
|
+
snowplow-react-native-tracker: d947a5d147cb5e401f0c3361a9fde13fb2aaf942
|
|
723
|
+
SnowplowTracker: 6b19c331d5b765bda8b97b1c70ab52491524da60
|
|
731
724
|
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
|
|
732
|
-
Yoga:
|
|
725
|
+
Yoga: 6f5ab94cd8b1ecd04b6e973d0bc583ede2a598cc
|
|
733
726
|
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
|
734
727
|
|
|
735
|
-
PODFILE CHECKSUM:
|
|
728
|
+
PODFILE CHECKSUM: 3b739a495d6e28fa9459a36ce75470840caf7c79
|
|
736
729
|
|
|
737
|
-
COCOAPODS: 1.
|
|
730
|
+
COCOAPODS: 1.15.2
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>NSPrivacyAccessedAPITypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
<dict>
|
|
8
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
9
|
+
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
|
|
10
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
11
|
+
<array>
|
|
12
|
+
<string>C617.1</string>
|
|
13
|
+
</array>
|
|
14
|
+
</dict>
|
|
15
|
+
<dict>
|
|
16
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
17
|
+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
|
|
18
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
19
|
+
<array>
|
|
20
|
+
<string>CA92.1</string>
|
|
21
|
+
</array>
|
|
22
|
+
</dict>
|
|
23
|
+
<dict>
|
|
24
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
25
|
+
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
|
|
26
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
27
|
+
<array>
|
|
28
|
+
<string>35F9.1</string>
|
|
29
|
+
</array>
|
|
30
|
+
</dict>
|
|
31
|
+
</array>
|
|
32
|
+
<key>NSPrivacyCollectedDataTypes</key>
|
|
33
|
+
<array/>
|
|
34
|
+
<key>NSPrivacyTracking</key>
|
|
35
|
+
<false/>
|
|
36
|
+
</dict>
|
|
37
|
+
</plist>
|