react-obsidian 0.0.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/.buildkite/pipeline.yml +0 -0
- package/.eslintignore +1 -0
- package/.eslintrc.json +93 -0
- package/.nvmrc +1 -0
- package/LICENSE +7 -0
- package/README.md +160 -0
- package/babel.config.js +12 -0
- package/dist/src/GraphProperties.d.ts +6 -0
- package/dist/src/GraphProperties.d.ts.map +1 -0
- package/dist/src/GraphProperties.js +16 -0
- package/dist/src/GraphProperties.js.map +1 -0
- package/dist/src/Obsidian.d.ts +9 -0
- package/dist/src/Obsidian.d.ts.map +1 -0
- package/dist/src/Obsidian.js +22 -0
- package/dist/src/Obsidian.js.map +1 -0
- package/dist/src/ProvidedPropertiesStore.d.ts +10 -0
- package/dist/src/ProvidedPropertiesStore.d.ts.map +1 -0
- package/dist/src/ProvidedPropertiesStore.js +27 -0
- package/dist/src/ProvidedPropertiesStore.js.map +1 -0
- package/dist/src/Provides.d.ts +9 -0
- package/dist/src/Provides.d.ts.map +1 -0
- package/dist/src/Provides.js +15 -0
- package/dist/src/Provides.js.map +1 -0
- package/dist/src/ReferenceCounter.d.ts +8 -0
- package/dist/src/ReferenceCounter.d.ts.map +1 -0
- package/dist/src/ReferenceCounter.js +25 -0
- package/dist/src/ReferenceCounter.js.map +1 -0
- package/dist/src/ScopedValuesRegistry.d.ts +11 -0
- package/dist/src/ScopedValuesRegistry.d.ts.map +1 -0
- package/dist/src/ScopedValuesRegistry.js +25 -0
- package/dist/src/ScopedValuesRegistry.js.map +1 -0
- package/dist/src/decorators/Graph.d.ts +10 -0
- package/dist/src/decorators/Graph.d.ts.map +1 -0
- package/dist/src/decorators/Graph.js +17 -0
- package/dist/src/decorators/Graph.js.map +1 -0
- package/dist/src/decorators/injectClass.d.ts +7 -0
- package/dist/src/decorators/injectClass.d.ts.map +1 -0
- package/dist/src/decorators/injectClass.js +34 -0
- package/dist/src/decorators/injectClass.js.map +1 -0
- package/dist/src/graph/Graph.d.ts +6 -0
- package/dist/src/graph/Graph.d.ts.map +1 -0
- package/dist/src/graph/Graph.js +3 -0
- package/dist/src/graph/Graph.js.map +1 -0
- package/dist/src/graph/ObjectGraph.d.ts +11 -0
- package/dist/src/graph/ObjectGraph.d.ts.map +1 -0
- package/dist/src/graph/ObjectGraph.js +26 -0
- package/dist/src/graph/ObjectGraph.js.map +1 -0
- package/dist/src/graph/PropertyRetriever.d.ts +8 -0
- package/dist/src/graph/PropertyRetriever.d.ts.map +1 -0
- package/dist/src/graph/PropertyRetriever.js +40 -0
- package/dist/src/graph/PropertyRetriever.js.map +1 -0
- package/dist/src/graph/PropertyRetrieverDelegate.d.ts +5 -0
- package/dist/src/graph/PropertyRetrieverDelegate.d.ts.map +1 -0
- package/dist/src/graph/PropertyRetrieverDelegate.js +3 -0
- package/dist/src/graph/PropertyRetrieverDelegate.js.map +1 -0
- package/dist/src/graph/registry/DefaultGraphResolver.d.ts +7 -0
- package/dist/src/graph/registry/DefaultGraphResolver.d.ts.map +1 -0
- package/dist/src/graph/registry/DefaultGraphResolver.js +30 -0
- package/dist/src/graph/registry/DefaultGraphResolver.js.map +1 -0
- package/dist/src/graph/registry/GraphMiddleware.d.ts +12 -0
- package/dist/src/graph/registry/GraphMiddleware.d.ts.map +1 -0
- package/dist/src/graph/registry/GraphMiddleware.js +25 -0
- package/dist/src/graph/registry/GraphMiddleware.js.map +1 -0
- package/dist/src/graph/registry/GraphMiddlewareChain.d.ts +12 -0
- package/dist/src/graph/registry/GraphMiddlewareChain.d.ts.map +1 -0
- package/dist/src/graph/registry/GraphMiddlewareChain.js +30 -0
- package/dist/src/graph/registry/GraphMiddlewareChain.js.map +1 -0
- package/dist/src/graph/registry/GraphRegistry.d.ts +22 -0
- package/dist/src/graph/registry/GraphRegistry.d.ts.map +1 -0
- package/dist/src/graph/registry/GraphRegistry.js +65 -0
- package/dist/src/graph/registry/GraphRegistry.js.map +1 -0
- package/dist/src/index.d.ts +17 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +24 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/injectHook.d.ts +5 -0
- package/dist/src/injectHook.d.ts.map +1 -0
- package/dist/src/injectHook.js +30 -0
- package/dist/src/injectHook.js.map +1 -0
- package/dist/src/injectors/components/ComponentInjector.d.ts +9 -0
- package/dist/src/injectors/components/ComponentInjector.d.ts.map +1 -0
- package/dist/src/injectors/components/ComponentInjector.js +48 -0
- package/dist/src/injectors/components/ComponentInjector.js.map +1 -0
- package/dist/src/injectors/components/PropsInjector.d.ts +7 -0
- package/dist/src/injectors/components/PropsInjector.d.ts.map +1 -0
- package/dist/src/injectors/components/PropsInjector.js +19 -0
- package/dist/src/injectors/components/PropsInjector.js.map +1 -0
- package/dist/src/injectors/components/useGraph.d.ts +5 -0
- package/dist/src/injectors/components/useGraph.d.ts.map +1 -0
- package/dist/src/injectors/components/useGraph.js +17 -0
- package/dist/src/injectors/components/useGraph.js.map +1 -0
- package/dist/test/integration/fixtures/InjectedComponent.d.ts +8 -0
- package/dist/test/integration/fixtures/InjectedComponent.d.ts.map +1 -0
- package/dist/test/integration/fixtures/InjectedComponent.js +14 -0
- package/dist/test/integration/fixtures/InjectedComponent.js.map +1 -0
- package/dist/test/integration/fixtures/MainGraph.d.ts +6 -0
- package/dist/test/integration/fixtures/MainGraph.d.ts.map +1 -0
- package/dist/test/integration/fixtures/MainGraph.js +53 -0
- package/dist/test/integration/fixtures/MainGraph.js.map +1 -0
- package/dist/test/integration/fixtures/StringProvider.d.ts +5 -0
- package/dist/test/integration/fixtures/StringProvider.d.ts.map +1 -0
- package/dist/test/integration/fixtures/StringProvider.js +15 -0
- package/dist/test/integration/fixtures/StringProvider.js.map +1 -0
- package/dist/test/integration/fixtures/Subgraph.d.ts +8 -0
- package/dist/test/integration/fixtures/Subgraph.d.ts.map +1 -0
- package/dist/test/integration/fixtures/Subgraph.js +71 -0
- package/dist/test/integration/fixtures/Subgraph.js.map +1 -0
- package/dist/test/integration/fixtures/ThrowingMainGraph.d.ts +5 -0
- package/dist/test/integration/fixtures/ThrowingMainGraph.d.ts.map +1 -0
- package/dist/test/integration/fixtures/ThrowingMainGraph.js +52 -0
- package/dist/test/integration/fixtures/ThrowingMainGraph.js.map +1 -0
- package/dist/test/integration/fixtures/injectedValues.d.ts +6 -0
- package/dist/test/integration/fixtures/injectedValues.d.ts.map +1 -0
- package/dist/test/integration/fixtures/injectedValues.js +7 -0
- package/dist/test/integration/fixtures/injectedValues.js.map +1 -0
- package/dist/testkit/index.d.ts +8 -0
- package/dist/testkit/index.d.ts.map +1 -0
- package/dist/testkit/index.js +46 -0
- package/dist/testkit/index.js.map +1 -0
- package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.d.ts +9 -0
- package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.d.ts.map +1 -0
- package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.js +54 -0
- package/dist/transformers/babel-plugin-obsidian-provide/helpers/index.js.map +1 -0
- package/dist/transformers/babel-plugin-obsidian-provide/index.d.ts +3 -0
- package/dist/transformers/babel-plugin-obsidian-provide/index.d.ts.map +1 -0
- package/dist/transformers/babel-plugin-obsidian-provide/index.js +35 -0
- package/dist/transformers/babel-plugin-obsidian-provide/index.js.map +1 -0
- package/example/.buckconfig +6 -0
- package/example/.editorconfig +3 -0
- package/example/.eslintrc.js +4 -0
- package/example/.flowconfig +65 -0
- package/example/.gitattributes +3 -0
- package/example/.prettierrc.js +7 -0
- package/example/.watchmanconfig +1 -0
- package/example/App.tsx +31 -0
- package/example/MyInjectedComponent.tsx +28 -0
- package/example/__tests__/App-test.js +14 -0
- package/example/android/app/BUCK +55 -0
- package/example/android/app/build.gradle +227 -0
- package/example/android/app/build_defs.bzl +19 -0
- package/example/android/app/debug.keystore +0 -0
- package/example/android/app/proguard-rules.pro +10 -0
- package/example/android/app/src/debug/AndroidManifest.xml +13 -0
- package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +72 -0
- package/example/android/app/src/main/AndroidManifest.xml +25 -0
- package/example/android/app/src/main/java/com/example/MainActivity.java +15 -0
- package/example/android/app/src/main/java/com/example/MainApplication.java +80 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
- package/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
- package/example/android/app/src/main/res/values/strings.xml +3 -0
- package/example/android/app/src/main/res/values/styles.xml +8 -0
- package/example/android/build.gradle +38 -0
- package/example/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -0
- package/example/android/gradle.properties +28 -0
- package/example/android/gradlew +185 -0
- package/example/android/gradlew.bat +89 -0
- package/example/android/settings.gradle +3 -0
- package/example/app.json +4 -0
- package/example/babel.config.js +8 -0
- package/example/index.js +9 -0
- package/example/ios/Podfile +30 -0
- package/example/ios/Podfile.lock +526 -0
- package/example/ios/example/AppDelegate.h +8 -0
- package/example/ios/example/AppDelegate.m +62 -0
- package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- package/example/ios/example/Images.xcassets/Contents.json +6 -0
- package/example/ios/example/Info.plist +55 -0
- package/example/ios/example/LaunchScreen.storyboard +47 -0
- package/example/ios/example/main.m +9 -0
- package/example/ios/example.xcodeproj/project.pbxproj +689 -0
- package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -0
- package/example/ios/example.xcworkspace/contents.xcworkspacedata +10 -0
- package/example/ios/exampleTests/Info.plist +24 -0
- package/example/ios/exampleTests/exampleTests.m +65 -0
- package/example/metro.config.js +44 -0
- package/example/package.json +35 -0
- package/example/tsconfig.json +45 -0
- package/jest.config.js +12 -0
- package/package.json +79 -0
- package/src/@types/obsidian.d.ts +19 -0
- package/src/GraphProperties.ts +11 -0
- package/src/Obsidian.ts +18 -0
- package/src/ProvidedPropertiesStore.ts +22 -0
- package/src/Provides.ts +16 -0
- package/src/ReferenceCounter.ts +20 -0
- package/src/ScopedValuesRegistry.ts +26 -0
- package/src/decorators/Graph.ts +20 -0
- package/src/decorators/injectClass.ts +28 -0
- package/src/graph/Graph.ts +7 -0
- package/src/graph/ObjectGraph.ts +19 -0
- package/src/graph/PropertyRetriever.ts +36 -0
- package/src/graph/PropertyRetrieverDelegate.ts +5 -0
- package/src/graph/registry/DefaultGraphResolver.ts +9 -0
- package/src/graph/registry/GraphMiddleware.ts +24 -0
- package/src/graph/registry/GraphMiddlewareChain.ts +31 -0
- package/src/graph/registry/GraphRegistry.ts +70 -0
- package/src/index.ts +23 -0
- package/src/injectHook.ts +26 -0
- package/src/injectors/components/ComponentInjector.tsx +29 -0
- package/src/injectors/components/PropsInjector.ts +14 -0
- package/src/injectors/components/useGraph.ts +14 -0
- package/testkit/index.ts +25 -0
- package/transformers/babel-plugin-obsidian-provide/helpers/index.ts +59 -0
- package/transformers/babel-plugin-obsidian-provide/index.ts +44 -0
- package/tsconfig.base.json +43 -0
- package/tsconfig.json +3 -0
- package/tsconfig.prod.json +7 -0
|
@@ -0,0 +1,526 @@
|
|
|
1
|
+
PODS:
|
|
2
|
+
- boost (1.76.0)
|
|
3
|
+
- CocoaAsyncSocket (7.6.5)
|
|
4
|
+
- DoubleConversion (1.1.6)
|
|
5
|
+
- FBLazyVector (0.66.3)
|
|
6
|
+
- FBReactNativeSpec (0.66.3):
|
|
7
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
8
|
+
- RCTRequired (= 0.66.3)
|
|
9
|
+
- RCTTypeSafety (= 0.66.3)
|
|
10
|
+
- React-Core (= 0.66.3)
|
|
11
|
+
- React-jsi (= 0.66.3)
|
|
12
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
13
|
+
- Flipper (0.99.0):
|
|
14
|
+
- Flipper-Folly (~> 2.6)
|
|
15
|
+
- Flipper-RSocket (~> 1.4)
|
|
16
|
+
- Flipper-Boost-iOSX (1.76.0.1.11)
|
|
17
|
+
- Flipper-DoubleConversion (3.1.7)
|
|
18
|
+
- Flipper-Fmt (7.1.7)
|
|
19
|
+
- Flipper-Folly (2.6.7):
|
|
20
|
+
- Flipper-Boost-iOSX
|
|
21
|
+
- Flipper-DoubleConversion
|
|
22
|
+
- Flipper-Fmt (= 7.1.7)
|
|
23
|
+
- Flipper-Glog
|
|
24
|
+
- libevent (~> 2.1.12)
|
|
25
|
+
- OpenSSL-Universal (= 1.1.180)
|
|
26
|
+
- Flipper-Glog (0.3.6)
|
|
27
|
+
- Flipper-PeerTalk (0.0.4)
|
|
28
|
+
- Flipper-RSocket (1.4.3):
|
|
29
|
+
- Flipper-Folly (~> 2.6)
|
|
30
|
+
- FlipperKit (0.99.0):
|
|
31
|
+
- FlipperKit/Core (= 0.99.0)
|
|
32
|
+
- FlipperKit/Core (0.99.0):
|
|
33
|
+
- Flipper (~> 0.99.0)
|
|
34
|
+
- FlipperKit/CppBridge
|
|
35
|
+
- FlipperKit/FBCxxFollyDynamicConvert
|
|
36
|
+
- FlipperKit/FBDefines
|
|
37
|
+
- FlipperKit/FKPortForwarding
|
|
38
|
+
- FlipperKit/CppBridge (0.99.0):
|
|
39
|
+
- Flipper (~> 0.99.0)
|
|
40
|
+
- FlipperKit/FBCxxFollyDynamicConvert (0.99.0):
|
|
41
|
+
- Flipper-Folly (~> 2.6)
|
|
42
|
+
- FlipperKit/FBDefines (0.99.0)
|
|
43
|
+
- FlipperKit/FKPortForwarding (0.99.0):
|
|
44
|
+
- CocoaAsyncSocket (~> 7.6)
|
|
45
|
+
- Flipper-PeerTalk (~> 0.0.4)
|
|
46
|
+
- FlipperKit/FlipperKitHighlightOverlay (0.99.0)
|
|
47
|
+
- FlipperKit/FlipperKitLayoutHelpers (0.99.0):
|
|
48
|
+
- FlipperKit/Core
|
|
49
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
50
|
+
- FlipperKit/FlipperKitLayoutTextSearchable
|
|
51
|
+
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.99.0):
|
|
52
|
+
- FlipperKit/Core
|
|
53
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
54
|
+
- FlipperKit/FlipperKitLayoutHelpers
|
|
55
|
+
- YogaKit (~> 1.18)
|
|
56
|
+
- FlipperKit/FlipperKitLayoutPlugin (0.99.0):
|
|
57
|
+
- FlipperKit/Core
|
|
58
|
+
- FlipperKit/FlipperKitHighlightOverlay
|
|
59
|
+
- FlipperKit/FlipperKitLayoutHelpers
|
|
60
|
+
- FlipperKit/FlipperKitLayoutIOSDescriptors
|
|
61
|
+
- FlipperKit/FlipperKitLayoutTextSearchable
|
|
62
|
+
- YogaKit (~> 1.18)
|
|
63
|
+
- FlipperKit/FlipperKitLayoutTextSearchable (0.99.0)
|
|
64
|
+
- FlipperKit/FlipperKitNetworkPlugin (0.99.0):
|
|
65
|
+
- FlipperKit/Core
|
|
66
|
+
- FlipperKit/FlipperKitReactPlugin (0.99.0):
|
|
67
|
+
- FlipperKit/Core
|
|
68
|
+
- FlipperKit/FlipperKitUserDefaultsPlugin (0.99.0):
|
|
69
|
+
- FlipperKit/Core
|
|
70
|
+
- FlipperKit/SKIOSNetworkPlugin (0.99.0):
|
|
71
|
+
- FlipperKit/Core
|
|
72
|
+
- FlipperKit/FlipperKitNetworkPlugin
|
|
73
|
+
- fmt (6.2.1)
|
|
74
|
+
- glog (0.3.5)
|
|
75
|
+
- libevent (2.1.12)
|
|
76
|
+
- OpenSSL-Universal (1.1.180)
|
|
77
|
+
- RCT-Folly (2021.06.28.00-v2):
|
|
78
|
+
- boost
|
|
79
|
+
- DoubleConversion
|
|
80
|
+
- fmt (~> 6.2.1)
|
|
81
|
+
- glog
|
|
82
|
+
- RCT-Folly/Default (= 2021.06.28.00-v2)
|
|
83
|
+
- RCT-Folly/Default (2021.06.28.00-v2):
|
|
84
|
+
- boost
|
|
85
|
+
- DoubleConversion
|
|
86
|
+
- fmt (~> 6.2.1)
|
|
87
|
+
- glog
|
|
88
|
+
- RCTRequired (0.66.3)
|
|
89
|
+
- RCTTypeSafety (0.66.3):
|
|
90
|
+
- FBLazyVector (= 0.66.3)
|
|
91
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
92
|
+
- RCTRequired (= 0.66.3)
|
|
93
|
+
- React-Core (= 0.66.3)
|
|
94
|
+
- React (0.66.3):
|
|
95
|
+
- React-Core (= 0.66.3)
|
|
96
|
+
- React-Core/DevSupport (= 0.66.3)
|
|
97
|
+
- React-Core/RCTWebSocket (= 0.66.3)
|
|
98
|
+
- React-RCTActionSheet (= 0.66.3)
|
|
99
|
+
- React-RCTAnimation (= 0.66.3)
|
|
100
|
+
- React-RCTBlob (= 0.66.3)
|
|
101
|
+
- React-RCTImage (= 0.66.3)
|
|
102
|
+
- React-RCTLinking (= 0.66.3)
|
|
103
|
+
- React-RCTNetwork (= 0.66.3)
|
|
104
|
+
- React-RCTSettings (= 0.66.3)
|
|
105
|
+
- React-RCTText (= 0.66.3)
|
|
106
|
+
- React-RCTVibration (= 0.66.3)
|
|
107
|
+
- React-callinvoker (0.66.3)
|
|
108
|
+
- React-Core (0.66.3):
|
|
109
|
+
- glog
|
|
110
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
111
|
+
- React-Core/Default (= 0.66.3)
|
|
112
|
+
- React-cxxreact (= 0.66.3)
|
|
113
|
+
- React-jsi (= 0.66.3)
|
|
114
|
+
- React-jsiexecutor (= 0.66.3)
|
|
115
|
+
- React-perflogger (= 0.66.3)
|
|
116
|
+
- Yoga
|
|
117
|
+
- React-Core/CoreModulesHeaders (0.66.3):
|
|
118
|
+
- glog
|
|
119
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
120
|
+
- React-Core/Default
|
|
121
|
+
- React-cxxreact (= 0.66.3)
|
|
122
|
+
- React-jsi (= 0.66.3)
|
|
123
|
+
- React-jsiexecutor (= 0.66.3)
|
|
124
|
+
- React-perflogger (= 0.66.3)
|
|
125
|
+
- Yoga
|
|
126
|
+
- React-Core/Default (0.66.3):
|
|
127
|
+
- glog
|
|
128
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
129
|
+
- React-cxxreact (= 0.66.3)
|
|
130
|
+
- React-jsi (= 0.66.3)
|
|
131
|
+
- React-jsiexecutor (= 0.66.3)
|
|
132
|
+
- React-perflogger (= 0.66.3)
|
|
133
|
+
- Yoga
|
|
134
|
+
- React-Core/DevSupport (0.66.3):
|
|
135
|
+
- glog
|
|
136
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
137
|
+
- React-Core/Default (= 0.66.3)
|
|
138
|
+
- React-Core/RCTWebSocket (= 0.66.3)
|
|
139
|
+
- React-cxxreact (= 0.66.3)
|
|
140
|
+
- React-jsi (= 0.66.3)
|
|
141
|
+
- React-jsiexecutor (= 0.66.3)
|
|
142
|
+
- React-jsinspector (= 0.66.3)
|
|
143
|
+
- React-perflogger (= 0.66.3)
|
|
144
|
+
- Yoga
|
|
145
|
+
- React-Core/RCTActionSheetHeaders (0.66.3):
|
|
146
|
+
- glog
|
|
147
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
148
|
+
- React-Core/Default
|
|
149
|
+
- React-cxxreact (= 0.66.3)
|
|
150
|
+
- React-jsi (= 0.66.3)
|
|
151
|
+
- React-jsiexecutor (= 0.66.3)
|
|
152
|
+
- React-perflogger (= 0.66.3)
|
|
153
|
+
- Yoga
|
|
154
|
+
- React-Core/RCTAnimationHeaders (0.66.3):
|
|
155
|
+
- glog
|
|
156
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
157
|
+
- React-Core/Default
|
|
158
|
+
- React-cxxreact (= 0.66.3)
|
|
159
|
+
- React-jsi (= 0.66.3)
|
|
160
|
+
- React-jsiexecutor (= 0.66.3)
|
|
161
|
+
- React-perflogger (= 0.66.3)
|
|
162
|
+
- Yoga
|
|
163
|
+
- React-Core/RCTBlobHeaders (0.66.3):
|
|
164
|
+
- glog
|
|
165
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
166
|
+
- React-Core/Default
|
|
167
|
+
- React-cxxreact (= 0.66.3)
|
|
168
|
+
- React-jsi (= 0.66.3)
|
|
169
|
+
- React-jsiexecutor (= 0.66.3)
|
|
170
|
+
- React-perflogger (= 0.66.3)
|
|
171
|
+
- Yoga
|
|
172
|
+
- React-Core/RCTImageHeaders (0.66.3):
|
|
173
|
+
- glog
|
|
174
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
175
|
+
- React-Core/Default
|
|
176
|
+
- React-cxxreact (= 0.66.3)
|
|
177
|
+
- React-jsi (= 0.66.3)
|
|
178
|
+
- React-jsiexecutor (= 0.66.3)
|
|
179
|
+
- React-perflogger (= 0.66.3)
|
|
180
|
+
- Yoga
|
|
181
|
+
- React-Core/RCTLinkingHeaders (0.66.3):
|
|
182
|
+
- glog
|
|
183
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
184
|
+
- React-Core/Default
|
|
185
|
+
- React-cxxreact (= 0.66.3)
|
|
186
|
+
- React-jsi (= 0.66.3)
|
|
187
|
+
- React-jsiexecutor (= 0.66.3)
|
|
188
|
+
- React-perflogger (= 0.66.3)
|
|
189
|
+
- Yoga
|
|
190
|
+
- React-Core/RCTNetworkHeaders (0.66.3):
|
|
191
|
+
- glog
|
|
192
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
193
|
+
- React-Core/Default
|
|
194
|
+
- React-cxxreact (= 0.66.3)
|
|
195
|
+
- React-jsi (= 0.66.3)
|
|
196
|
+
- React-jsiexecutor (= 0.66.3)
|
|
197
|
+
- React-perflogger (= 0.66.3)
|
|
198
|
+
- Yoga
|
|
199
|
+
- React-Core/RCTSettingsHeaders (0.66.3):
|
|
200
|
+
- glog
|
|
201
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
202
|
+
- React-Core/Default
|
|
203
|
+
- React-cxxreact (= 0.66.3)
|
|
204
|
+
- React-jsi (= 0.66.3)
|
|
205
|
+
- React-jsiexecutor (= 0.66.3)
|
|
206
|
+
- React-perflogger (= 0.66.3)
|
|
207
|
+
- Yoga
|
|
208
|
+
- React-Core/RCTTextHeaders (0.66.3):
|
|
209
|
+
- glog
|
|
210
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
211
|
+
- React-Core/Default
|
|
212
|
+
- React-cxxreact (= 0.66.3)
|
|
213
|
+
- React-jsi (= 0.66.3)
|
|
214
|
+
- React-jsiexecutor (= 0.66.3)
|
|
215
|
+
- React-perflogger (= 0.66.3)
|
|
216
|
+
- Yoga
|
|
217
|
+
- React-Core/RCTVibrationHeaders (0.66.3):
|
|
218
|
+
- glog
|
|
219
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
220
|
+
- React-Core/Default
|
|
221
|
+
- React-cxxreact (= 0.66.3)
|
|
222
|
+
- React-jsi (= 0.66.3)
|
|
223
|
+
- React-jsiexecutor (= 0.66.3)
|
|
224
|
+
- React-perflogger (= 0.66.3)
|
|
225
|
+
- Yoga
|
|
226
|
+
- React-Core/RCTWebSocket (0.66.3):
|
|
227
|
+
- glog
|
|
228
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
229
|
+
- React-Core/Default (= 0.66.3)
|
|
230
|
+
- React-cxxreact (= 0.66.3)
|
|
231
|
+
- React-jsi (= 0.66.3)
|
|
232
|
+
- React-jsiexecutor (= 0.66.3)
|
|
233
|
+
- React-perflogger (= 0.66.3)
|
|
234
|
+
- Yoga
|
|
235
|
+
- React-CoreModules (0.66.3):
|
|
236
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
237
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
238
|
+
- RCTTypeSafety (= 0.66.3)
|
|
239
|
+
- React-Core/CoreModulesHeaders (= 0.66.3)
|
|
240
|
+
- React-jsi (= 0.66.3)
|
|
241
|
+
- React-RCTImage (= 0.66.3)
|
|
242
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
243
|
+
- React-cxxreact (0.66.3):
|
|
244
|
+
- boost (= 1.76.0)
|
|
245
|
+
- DoubleConversion
|
|
246
|
+
- glog
|
|
247
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
248
|
+
- React-callinvoker (= 0.66.3)
|
|
249
|
+
- React-jsi (= 0.66.3)
|
|
250
|
+
- React-jsinspector (= 0.66.3)
|
|
251
|
+
- React-logger (= 0.66.3)
|
|
252
|
+
- React-perflogger (= 0.66.3)
|
|
253
|
+
- React-runtimeexecutor (= 0.66.3)
|
|
254
|
+
- React-jsi (0.66.3):
|
|
255
|
+
- boost (= 1.76.0)
|
|
256
|
+
- DoubleConversion
|
|
257
|
+
- glog
|
|
258
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
259
|
+
- React-jsi/Default (= 0.66.3)
|
|
260
|
+
- React-jsi/Default (0.66.3):
|
|
261
|
+
- boost (= 1.76.0)
|
|
262
|
+
- DoubleConversion
|
|
263
|
+
- glog
|
|
264
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
265
|
+
- React-jsiexecutor (0.66.3):
|
|
266
|
+
- DoubleConversion
|
|
267
|
+
- glog
|
|
268
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
269
|
+
- React-cxxreact (= 0.66.3)
|
|
270
|
+
- React-jsi (= 0.66.3)
|
|
271
|
+
- React-perflogger (= 0.66.3)
|
|
272
|
+
- React-jsinspector (0.66.3)
|
|
273
|
+
- React-logger (0.66.3):
|
|
274
|
+
- glog
|
|
275
|
+
- React-perflogger (0.66.3)
|
|
276
|
+
- React-RCTActionSheet (0.66.3):
|
|
277
|
+
- React-Core/RCTActionSheetHeaders (= 0.66.3)
|
|
278
|
+
- React-RCTAnimation (0.66.3):
|
|
279
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
280
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
281
|
+
- RCTTypeSafety (= 0.66.3)
|
|
282
|
+
- React-Core/RCTAnimationHeaders (= 0.66.3)
|
|
283
|
+
- React-jsi (= 0.66.3)
|
|
284
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
285
|
+
- React-RCTBlob (0.66.3):
|
|
286
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
287
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
288
|
+
- React-Core/RCTBlobHeaders (= 0.66.3)
|
|
289
|
+
- React-Core/RCTWebSocket (= 0.66.3)
|
|
290
|
+
- React-jsi (= 0.66.3)
|
|
291
|
+
- React-RCTNetwork (= 0.66.3)
|
|
292
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
293
|
+
- React-RCTImage (0.66.3):
|
|
294
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
295
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
296
|
+
- RCTTypeSafety (= 0.66.3)
|
|
297
|
+
- React-Core/RCTImageHeaders (= 0.66.3)
|
|
298
|
+
- React-jsi (= 0.66.3)
|
|
299
|
+
- React-RCTNetwork (= 0.66.3)
|
|
300
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
301
|
+
- React-RCTLinking (0.66.3):
|
|
302
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
303
|
+
- React-Core/RCTLinkingHeaders (= 0.66.3)
|
|
304
|
+
- React-jsi (= 0.66.3)
|
|
305
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
306
|
+
- React-RCTNetwork (0.66.3):
|
|
307
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
308
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
309
|
+
- RCTTypeSafety (= 0.66.3)
|
|
310
|
+
- React-Core/RCTNetworkHeaders (= 0.66.3)
|
|
311
|
+
- React-jsi (= 0.66.3)
|
|
312
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
313
|
+
- React-RCTSettings (0.66.3):
|
|
314
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
315
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
316
|
+
- RCTTypeSafety (= 0.66.3)
|
|
317
|
+
- React-Core/RCTSettingsHeaders (= 0.66.3)
|
|
318
|
+
- React-jsi (= 0.66.3)
|
|
319
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
320
|
+
- React-RCTText (0.66.3):
|
|
321
|
+
- React-Core/RCTTextHeaders (= 0.66.3)
|
|
322
|
+
- React-RCTVibration (0.66.3):
|
|
323
|
+
- FBReactNativeSpec (= 0.66.3)
|
|
324
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
325
|
+
- React-Core/RCTVibrationHeaders (= 0.66.3)
|
|
326
|
+
- React-jsi (= 0.66.3)
|
|
327
|
+
- ReactCommon/turbomodule/core (= 0.66.3)
|
|
328
|
+
- React-runtimeexecutor (0.66.3):
|
|
329
|
+
- React-jsi (= 0.66.3)
|
|
330
|
+
- ReactCommon/turbomodule/core (0.66.3):
|
|
331
|
+
- DoubleConversion
|
|
332
|
+
- glog
|
|
333
|
+
- RCT-Folly (= 2021.06.28.00-v2)
|
|
334
|
+
- React-callinvoker (= 0.66.3)
|
|
335
|
+
- React-Core (= 0.66.3)
|
|
336
|
+
- React-cxxreact (= 0.66.3)
|
|
337
|
+
- React-jsi (= 0.66.3)
|
|
338
|
+
- React-logger (= 0.66.3)
|
|
339
|
+
- React-perflogger (= 0.66.3)
|
|
340
|
+
- Yoga (1.14.0)
|
|
341
|
+
- YogaKit (1.18.1):
|
|
342
|
+
- Yoga (~> 1.14)
|
|
343
|
+
|
|
344
|
+
DEPENDENCIES:
|
|
345
|
+
- boost (from `../node_modules/react-native/third-party-podspecs/boost.podspec`)
|
|
346
|
+
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
|
347
|
+
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
|
348
|
+
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
|
349
|
+
- Flipper (= 0.99.0)
|
|
350
|
+
- Flipper-Boost-iOSX (= 1.76.0.1.11)
|
|
351
|
+
- Flipper-DoubleConversion (= 3.1.7)
|
|
352
|
+
- Flipper-Fmt (= 7.1.7)
|
|
353
|
+
- Flipper-Folly (= 2.6.7)
|
|
354
|
+
- Flipper-Glog (= 0.3.6)
|
|
355
|
+
- Flipper-PeerTalk (= 0.0.4)
|
|
356
|
+
- Flipper-RSocket (= 1.4.3)
|
|
357
|
+
- FlipperKit (= 0.99.0)
|
|
358
|
+
- FlipperKit/Core (= 0.99.0)
|
|
359
|
+
- FlipperKit/CppBridge (= 0.99.0)
|
|
360
|
+
- FlipperKit/FBCxxFollyDynamicConvert (= 0.99.0)
|
|
361
|
+
- FlipperKit/FBDefines (= 0.99.0)
|
|
362
|
+
- FlipperKit/FKPortForwarding (= 0.99.0)
|
|
363
|
+
- FlipperKit/FlipperKitHighlightOverlay (= 0.99.0)
|
|
364
|
+
- FlipperKit/FlipperKitLayoutPlugin (= 0.99.0)
|
|
365
|
+
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.99.0)
|
|
366
|
+
- FlipperKit/FlipperKitNetworkPlugin (= 0.99.0)
|
|
367
|
+
- FlipperKit/FlipperKitReactPlugin (= 0.99.0)
|
|
368
|
+
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.99.0)
|
|
369
|
+
- FlipperKit/SKIOSNetworkPlugin (= 0.99.0)
|
|
370
|
+
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
|
371
|
+
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
|
372
|
+
- RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`)
|
|
373
|
+
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
|
374
|
+
- React (from `../node_modules/react-native/`)
|
|
375
|
+
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
|
376
|
+
- React-Core (from `../node_modules/react-native/`)
|
|
377
|
+
- React-Core/DevSupport (from `../node_modules/react-native/`)
|
|
378
|
+
- React-Core/RCTWebSocket (from `../node_modules/react-native/`)
|
|
379
|
+
- React-CoreModules (from `../node_modules/react-native/React/CoreModules`)
|
|
380
|
+
- React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`)
|
|
381
|
+
- React-jsi (from `../node_modules/react-native/ReactCommon/jsi`)
|
|
382
|
+
- React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`)
|
|
383
|
+
- React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`)
|
|
384
|
+
- React-logger (from `../node_modules/react-native/ReactCommon/logger`)
|
|
385
|
+
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
|
386
|
+
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
|
387
|
+
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
|
388
|
+
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
|
389
|
+
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
|
390
|
+
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
|
391
|
+
- React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`)
|
|
392
|
+
- React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`)
|
|
393
|
+
- React-RCTText (from `../node_modules/react-native/Libraries/Text`)
|
|
394
|
+
- React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`)
|
|
395
|
+
- React-runtimeexecutor (from `../node_modules/react-native/ReactCommon/runtimeexecutor`)
|
|
396
|
+
- ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`)
|
|
397
|
+
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
|
|
398
|
+
|
|
399
|
+
SPEC REPOS:
|
|
400
|
+
trunk:
|
|
401
|
+
- CocoaAsyncSocket
|
|
402
|
+
- Flipper
|
|
403
|
+
- Flipper-Boost-iOSX
|
|
404
|
+
- Flipper-DoubleConversion
|
|
405
|
+
- Flipper-Fmt
|
|
406
|
+
- Flipper-Folly
|
|
407
|
+
- Flipper-Glog
|
|
408
|
+
- Flipper-PeerTalk
|
|
409
|
+
- Flipper-RSocket
|
|
410
|
+
- FlipperKit
|
|
411
|
+
- fmt
|
|
412
|
+
- libevent
|
|
413
|
+
- OpenSSL-Universal
|
|
414
|
+
- YogaKit
|
|
415
|
+
|
|
416
|
+
EXTERNAL SOURCES:
|
|
417
|
+
boost:
|
|
418
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/boost.podspec"
|
|
419
|
+
DoubleConversion:
|
|
420
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec"
|
|
421
|
+
FBLazyVector:
|
|
422
|
+
:path: "../node_modules/react-native/Libraries/FBLazyVector"
|
|
423
|
+
FBReactNativeSpec:
|
|
424
|
+
:path: "../node_modules/react-native/React/FBReactNativeSpec"
|
|
425
|
+
glog:
|
|
426
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
|
427
|
+
RCT-Folly:
|
|
428
|
+
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
|
429
|
+
RCTRequired:
|
|
430
|
+
:path: "../node_modules/react-native/Libraries/RCTRequired"
|
|
431
|
+
RCTTypeSafety:
|
|
432
|
+
:path: "../node_modules/react-native/Libraries/TypeSafety"
|
|
433
|
+
React:
|
|
434
|
+
:path: "../node_modules/react-native/"
|
|
435
|
+
React-callinvoker:
|
|
436
|
+
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
|
437
|
+
React-Core:
|
|
438
|
+
:path: "../node_modules/react-native/"
|
|
439
|
+
React-CoreModules:
|
|
440
|
+
:path: "../node_modules/react-native/React/CoreModules"
|
|
441
|
+
React-cxxreact:
|
|
442
|
+
:path: "../node_modules/react-native/ReactCommon/cxxreact"
|
|
443
|
+
React-jsi:
|
|
444
|
+
:path: "../node_modules/react-native/ReactCommon/jsi"
|
|
445
|
+
React-jsiexecutor:
|
|
446
|
+
:path: "../node_modules/react-native/ReactCommon/jsiexecutor"
|
|
447
|
+
React-jsinspector:
|
|
448
|
+
:path: "../node_modules/react-native/ReactCommon/jsinspector"
|
|
449
|
+
React-logger:
|
|
450
|
+
:path: "../node_modules/react-native/ReactCommon/logger"
|
|
451
|
+
React-perflogger:
|
|
452
|
+
:path: "../node_modules/react-native/ReactCommon/reactperflogger"
|
|
453
|
+
React-RCTActionSheet:
|
|
454
|
+
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
|
455
|
+
React-RCTAnimation:
|
|
456
|
+
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
|
457
|
+
React-RCTBlob:
|
|
458
|
+
:path: "../node_modules/react-native/Libraries/Blob"
|
|
459
|
+
React-RCTImage:
|
|
460
|
+
:path: "../node_modules/react-native/Libraries/Image"
|
|
461
|
+
React-RCTLinking:
|
|
462
|
+
:path: "../node_modules/react-native/Libraries/LinkingIOS"
|
|
463
|
+
React-RCTNetwork:
|
|
464
|
+
:path: "../node_modules/react-native/Libraries/Network"
|
|
465
|
+
React-RCTSettings:
|
|
466
|
+
:path: "../node_modules/react-native/Libraries/Settings"
|
|
467
|
+
React-RCTText:
|
|
468
|
+
:path: "../node_modules/react-native/Libraries/Text"
|
|
469
|
+
React-RCTVibration:
|
|
470
|
+
:path: "../node_modules/react-native/Libraries/Vibration"
|
|
471
|
+
React-runtimeexecutor:
|
|
472
|
+
:path: "../node_modules/react-native/ReactCommon/runtimeexecutor"
|
|
473
|
+
ReactCommon:
|
|
474
|
+
:path: "../node_modules/react-native/ReactCommon"
|
|
475
|
+
Yoga:
|
|
476
|
+
:path: "../node_modules/react-native/ReactCommon/yoga"
|
|
477
|
+
|
|
478
|
+
SPEC CHECKSUMS:
|
|
479
|
+
boost: a7c83b31436843459a1961bfd74b96033dc77234
|
|
480
|
+
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
|
481
|
+
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
|
|
482
|
+
FBLazyVector: de148e8310b8b878db304ceea2fec13f2c02e3a0
|
|
483
|
+
FBReactNativeSpec: 6192956c9e346013d5f1809ba049af720b11c6a4
|
|
484
|
+
Flipper: 30e8eeeed6abdc98edaf32af0cda2f198be4b733
|
|
485
|
+
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
|
|
486
|
+
Flipper-DoubleConversion: 57ffbe81ef95306cc9e69c4aa3aeeeeb58a6a28c
|
|
487
|
+
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
|
|
488
|
+
Flipper-Folly: 83af37379faa69497529e414bd43fbfc7cae259a
|
|
489
|
+
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
|
490
|
+
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
|
491
|
+
Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
|
|
492
|
+
FlipperKit: d8d346844eca5d9120c17d441a2f38596e8ed2b9
|
|
493
|
+
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
|
494
|
+
glog: 5337263514dd6f09803962437687240c5dc39aa4
|
|
495
|
+
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
|
496
|
+
OpenSSL-Universal: 1aa4f6a6ee7256b83db99ec1ccdaa80d10f9af9b
|
|
497
|
+
RCT-Folly: a21c126816d8025b547704b777a2ba552f3d9fa9
|
|
498
|
+
RCTRequired: 59d2b744d8c2bf2d9bc7032a9f654809adcf7d50
|
|
499
|
+
RCTTypeSafety: d0aaf7ccae5c70a4aaa3a5c3e9e0db97efae760e
|
|
500
|
+
React: fbe655dd1d12c052299b61abdc576720098d80fc
|
|
501
|
+
React-callinvoker: a535746608d9bc8b1dea7095ed4d8d3d7aae9a05
|
|
502
|
+
React-Core: 008d2638c4f80b189c8e170ff2d241027ec517fd
|
|
503
|
+
React-CoreModules: 91c9a03f4e1b74494c087d9c9a29e89a3145c228
|
|
504
|
+
React-cxxreact: 9c462fb6d59f865855e2dee2097c7d87b3d2de49
|
|
505
|
+
React-jsi: 4de8b8d70ba4ed841eb9b772bdb719f176387e21
|
|
506
|
+
React-jsiexecutor: 433a691aee158533a6a6ee9c86cb4a1684fa2853
|
|
507
|
+
React-jsinspector: d9c8eb0b53f0da206fed56612b289fec84991157
|
|
508
|
+
React-logger: e522e76fa3e9ec3e7d7115b49485cc065cf4ae06
|
|
509
|
+
React-perflogger: 73732888d37d4f5065198727b167846743232882
|
|
510
|
+
React-RCTActionSheet: 96c6d774fa89b1f7c59fc460adc3245ba2d7fd79
|
|
511
|
+
React-RCTAnimation: 8940cfd3a8640bd6f6372150dbdb83a79bcbae6c
|
|
512
|
+
React-RCTBlob: e80de5fdf952a4f226a00fc54f3db526809f92f7
|
|
513
|
+
React-RCTImage: f990d6b272c7e89ff864caf0bccfb620ab3ca5d0
|
|
514
|
+
React-RCTLinking: 2280ed0d5ffb78954b484b90228d597b5f941c5f
|
|
515
|
+
React-RCTNetwork: 1359fa853c216616e711b810dcb8682a6a8e7564
|
|
516
|
+
React-RCTSettings: 84958860aaa3639f0249e751ea7702c62eb67188
|
|
517
|
+
React-RCTText: 196cf06b8cb6229d8c6dd9fc9057bdf97db5d3fb
|
|
518
|
+
React-RCTVibration: 50cfe7049167cfc7e83ac5542c6fff0c76791a9b
|
|
519
|
+
React-runtimeexecutor: bbbdb3d8fcf327c6e2249ee71b6ef1764b7dc266
|
|
520
|
+
ReactCommon: 9bac022ab71596f2b0fde1268272543184c63971
|
|
521
|
+
Yoga: 32a18c0e845e185f4a2a66ec76e1fd1f958f22fa
|
|
522
|
+
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
|
523
|
+
|
|
524
|
+
PODFILE CHECKSUM: b238204fde808b9d15816fe170aa2c48b884b8b0
|
|
525
|
+
|
|
526
|
+
COCOAPODS: 1.10.1
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
#import "AppDelegate.h"
|
|
2
|
+
|
|
3
|
+
#import <React/RCTBridge.h>
|
|
4
|
+
#import <React/RCTBundleURLProvider.h>
|
|
5
|
+
#import <React/RCTRootView.h>
|
|
6
|
+
|
|
7
|
+
#ifdef FB_SONARKIT_ENABLED
|
|
8
|
+
#import <FlipperKit/FlipperClient.h>
|
|
9
|
+
#import <FlipperKitLayoutPlugin/FlipperKitLayoutPlugin.h>
|
|
10
|
+
#import <FlipperKitUserDefaultsPlugin/FKUserDefaultsPlugin.h>
|
|
11
|
+
#import <FlipperKitNetworkPlugin/FlipperKitNetworkPlugin.h>
|
|
12
|
+
#import <SKIOSNetworkPlugin/SKIOSNetworkAdapter.h>
|
|
13
|
+
#import <FlipperKitReactPlugin/FlipperKitReactPlugin.h>
|
|
14
|
+
|
|
15
|
+
static void InitializeFlipper(UIApplication *application) {
|
|
16
|
+
FlipperClient *client = [FlipperClient sharedClient];
|
|
17
|
+
SKDescriptorMapper *layoutDescriptorMapper = [[SKDescriptorMapper alloc] initWithDefaults];
|
|
18
|
+
[client addPlugin:[[FlipperKitLayoutPlugin alloc] initWithRootNode:application withDescriptorMapper:layoutDescriptorMapper]];
|
|
19
|
+
[client addPlugin:[[FKUserDefaultsPlugin alloc] initWithSuiteName:nil]];
|
|
20
|
+
[client addPlugin:[FlipperKitReactPlugin new]];
|
|
21
|
+
[client addPlugin:[[FlipperKitNetworkPlugin alloc] initWithNetworkAdapter:[SKIOSNetworkAdapter new]]];
|
|
22
|
+
[client start];
|
|
23
|
+
}
|
|
24
|
+
#endif
|
|
25
|
+
|
|
26
|
+
@implementation AppDelegate
|
|
27
|
+
|
|
28
|
+
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
29
|
+
{
|
|
30
|
+
#ifdef FB_SONARKIT_ENABLED
|
|
31
|
+
InitializeFlipper(application);
|
|
32
|
+
#endif
|
|
33
|
+
|
|
34
|
+
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
|
35
|
+
RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
|
|
36
|
+
moduleName:@"example"
|
|
37
|
+
initialProperties:nil];
|
|
38
|
+
|
|
39
|
+
if (@available(iOS 13.0, *)) {
|
|
40
|
+
rootView.backgroundColor = [UIColor systemBackgroundColor];
|
|
41
|
+
} else {
|
|
42
|
+
rootView.backgroundColor = [UIColor whiteColor];
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
|
46
|
+
UIViewController *rootViewController = [UIViewController new];
|
|
47
|
+
rootViewController.view = rootView;
|
|
48
|
+
self.window.rootViewController = rootViewController;
|
|
49
|
+
[self.window makeKeyAndVisible];
|
|
50
|
+
return YES;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
|
54
|
+
{
|
|
55
|
+
#if DEBUG
|
|
56
|
+
return [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil];
|
|
57
|
+
#else
|
|
58
|
+
return [[NSBundle mainBundle] URLForResource:@"main" withExtension:@"jsbundle"];
|
|
59
|
+
#endif
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@end
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"images" : [
|
|
3
|
+
{
|
|
4
|
+
"idiom" : "iphone",
|
|
5
|
+
"size" : "29x29",
|
|
6
|
+
"scale" : "2x"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"idiom" : "iphone",
|
|
10
|
+
"size" : "29x29",
|
|
11
|
+
"scale" : "3x"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"idiom" : "iphone",
|
|
15
|
+
"size" : "40x40",
|
|
16
|
+
"scale" : "2x"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"idiom" : "iphone",
|
|
20
|
+
"size" : "40x40",
|
|
21
|
+
"scale" : "3x"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"idiom" : "iphone",
|
|
25
|
+
"size" : "60x60",
|
|
26
|
+
"scale" : "2x"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"idiom" : "iphone",
|
|
30
|
+
"size" : "60x60",
|
|
31
|
+
"scale" : "3x"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"info" : {
|
|
35
|
+
"version" : 1,
|
|
36
|
+
"author" : "xcode"
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,55 @@
|
|
|
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>CFBundleDevelopmentRegion</key>
|
|
6
|
+
<string>en</string>
|
|
7
|
+
<key>CFBundleDisplayName</key>
|
|
8
|
+
<string>example</string>
|
|
9
|
+
<key>CFBundleExecutable</key>
|
|
10
|
+
<string>$(EXECUTABLE_NAME)</string>
|
|
11
|
+
<key>CFBundleIdentifier</key>
|
|
12
|
+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
14
|
+
<string>6.0</string>
|
|
15
|
+
<key>CFBundleName</key>
|
|
16
|
+
<string>$(PRODUCT_NAME)</string>
|
|
17
|
+
<key>CFBundlePackageType</key>
|
|
18
|
+
<string>APPL</string>
|
|
19
|
+
<key>CFBundleShortVersionString</key>
|
|
20
|
+
<string>1.0</string>
|
|
21
|
+
<key>CFBundleSignature</key>
|
|
22
|
+
<string>????</string>
|
|
23
|
+
<key>CFBundleVersion</key>
|
|
24
|
+
<string>1</string>
|
|
25
|
+
<key>LSRequiresIPhoneOS</key>
|
|
26
|
+
<true/>
|
|
27
|
+
<key>NSAppTransportSecurity</key>
|
|
28
|
+
<dict>
|
|
29
|
+
<key>NSExceptionDomains</key>
|
|
30
|
+
<dict>
|
|
31
|
+
<key>localhost</key>
|
|
32
|
+
<dict>
|
|
33
|
+
<key>NSExceptionAllowsInsecureHTTPLoads</key>
|
|
34
|
+
<true/>
|
|
35
|
+
</dict>
|
|
36
|
+
</dict>
|
|
37
|
+
</dict>
|
|
38
|
+
<key>NSLocationWhenInUseUsageDescription</key>
|
|
39
|
+
<string></string>
|
|
40
|
+
<key>UILaunchStoryboardName</key>
|
|
41
|
+
<string>LaunchScreen</string>
|
|
42
|
+
<key>UIRequiredDeviceCapabilities</key>
|
|
43
|
+
<array>
|
|
44
|
+
<string>armv7</string>
|
|
45
|
+
</array>
|
|
46
|
+
<key>UISupportedInterfaceOrientations</key>
|
|
47
|
+
<array>
|
|
48
|
+
<string>UIInterfaceOrientationPortrait</string>
|
|
49
|
+
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
50
|
+
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
51
|
+
</array>
|
|
52
|
+
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
53
|
+
<false/>
|
|
54
|
+
</dict>
|
|
55
|
+
</plist>
|