chore: upgrade to react-native 0.71
This commit is contained in:
@@ -346,7 +346,7 @@
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.framework/double-conversion",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-Glog/glog.framework/glog",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
|
||||
);
|
||||
name = "[CP] Embed Pods Frameworks";
|
||||
outputPaths = (
|
||||
@@ -370,7 +370,7 @@
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-DoubleConversion/double-conversion.framework/double-conversion",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/Flipper-Glog/glog.framework/glog",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/OpenSSL-Universal/OpenSSL.framework/OpenSSL",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/hermes.framework/hermes",
|
||||
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
|
||||
);
|
||||
name = "[CP] Embed Pods Frameworks";
|
||||
outputPaths = (
|
||||
|
||||
@@ -1,8 +1,6 @@
|
||||
#import <React/RCTBridgeDelegate.h>
|
||||
#import <RCTAppDelegate.h>
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate>
|
||||
@interface AppDelegate : RCTAppDelegate
|
||||
|
||||
@property (nonatomic, strong) UIWindow *window;
|
||||
|
||||
@end
|
||||
@end
|
||||
@@ -1,60 +1,17 @@
|
||||
#import "AppDelegate.h"
|
||||
|
||||
#import <React/RCTBridge.h>
|
||||
#import <React/RCTBundleURLProvider.h>
|
||||
#import <React/RCTRootView.h>
|
||||
|
||||
#import <React/RCTAppSetupUtils.h>
|
||||
|
||||
#if RCT_NEW_ARCH_ENABLED
|
||||
#import <React/CoreModulesPlugins.h>
|
||||
#import <React/RCTCxxBridgeDelegate.h>
|
||||
#import <React/RCTFabricSurfaceHostingProxyRootView.h>
|
||||
#import <React/RCTSurfacePresenter.h>
|
||||
#import <React/RCTSurfacePresenterBridgeAdapter.h>
|
||||
#import <ReactCommon/RCTTurboModuleManager.h>
|
||||
|
||||
#import <react/config/ReactNativeConfig.h>
|
||||
|
||||
@interface AppDelegate () <RCTCxxBridgeDelegate, RCTTurboModuleManagerDelegate> {
|
||||
RCTTurboModuleManager *_turboModuleManager;
|
||||
RCTSurfacePresenterBridgeAdapter *_bridgeAdapter;
|
||||
std::shared_ptr<const facebook::react::ReactNativeConfig> _reactNativeConfig;
|
||||
facebook::react::ContextContainer::Shared _contextContainer;
|
||||
}
|
||||
@end
|
||||
#endif
|
||||
|
||||
@implementation AppDelegate
|
||||
|
||||
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
||||
{
|
||||
RCTAppSetupPrepareApp(application);
|
||||
self.moduleName = @"Fintunes";
|
||||
// You can add your custom initial props in the dictionary below.
|
||||
// They will be passed down to the ViewController used by React Native.
|
||||
self.initialProps = @{};
|
||||
|
||||
RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
|
||||
|
||||
#if RCT_NEW_ARCH_ENABLED
|
||||
_contextContainer = std::make_shared<facebook::react::ContextContainer const>();
|
||||
_reactNativeConfig = std::make_shared<facebook::react::EmptyReactNativeConfig const>();
|
||||
_contextContainer->insert("ReactNativeConfig", _reactNativeConfig);
|
||||
_bridgeAdapter = [[RCTSurfacePresenterBridgeAdapter alloc] initWithBridge:bridge contextContainer:_contextContainer];
|
||||
bridge.surfacePresenter = _bridgeAdapter.surfacePresenter;
|
||||
#endif
|
||||
|
||||
UIView *rootView = RCTAppSetupDefaultRootView(bridge, @"Fintunes", nil);
|
||||
|
||||
if (@available(iOS 13.0, *)) {
|
||||
rootView.backgroundColor = [UIColor systemBackgroundColor];
|
||||
} else {
|
||||
rootView.backgroundColor = [UIColor whiteColor];
|
||||
}
|
||||
|
||||
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
|
||||
UIViewController *rootViewController = [UIViewController new];
|
||||
rootViewController.view = rootView;
|
||||
self.window.rootViewController = rootViewController;
|
||||
[self.window makeKeyAndVisible];
|
||||
return YES;
|
||||
return [super application:application didFinishLaunchingWithOptions:launchOptions];
|
||||
}
|
||||
|
||||
- (NSURL *)sourceURLForBridge:(RCTBridge *)bridge
|
||||
@@ -66,43 +23,14 @@
|
||||
#endif
|
||||
}
|
||||
|
||||
#if RCT_NEW_ARCH_ENABLED
|
||||
|
||||
#pragma mark - RCTCxxBridgeDelegate
|
||||
|
||||
- (std::unique_ptr<facebook::react::JSExecutorFactory>)jsExecutorFactoryForBridge:(RCTBridge *)bridge
|
||||
/// This method controls whether the `concurrentRoot`feature of React18 is turned on or off.
|
||||
///
|
||||
/// @see: https://reactjs.org/blog/2022/03/29/react-v18.html
|
||||
/// @note: This requires to be rendering on Fabric (i.e. on the New Architecture).
|
||||
/// @return: `true` if the `concurrentRoot` feature is enabled. Otherwise, it returns `false`.
|
||||
- (BOOL)concurrentRootEnabled
|
||||
{
|
||||
_turboModuleManager = [[RCTTurboModuleManager alloc] initWithBridge:bridge
|
||||
delegate:self
|
||||
jsInvoker:bridge.jsCallInvoker];
|
||||
return RCTAppSetupDefaultJsExecutorFactory(bridge, _turboModuleManager);
|
||||
return true;
|
||||
}
|
||||
|
||||
#pragma mark RCTTurboModuleManagerDelegate
|
||||
|
||||
- (Class)getModuleClassFromName:(const char *)name
|
||||
{
|
||||
return RCTCoreModulesClassProvider(name);
|
||||
}
|
||||
|
||||
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const std::string &)name
|
||||
jsInvoker:(std::shared_ptr<facebook::react::CallInvoker>)jsInvoker
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
- (std::shared_ptr<facebook::react::TurboModule>)getTurboModule:(const std::string &)name
|
||||
initParams:
|
||||
(const facebook::react::ObjCTurboModule::InitParams &)params
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
- (id<RCTTurboModule>)getModuleInstanceFromClass:(Class)moduleClass
|
||||
{
|
||||
return RCTAppSetupDefaultModuleFromClass(moduleClass);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@end
|
||||
25
ios/Podfile
25
ios/Podfile
@@ -1,8 +1,25 @@
|
||||
require_relative '../node_modules/react-native/scripts/react_native_pods'
|
||||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
|
||||
|
||||
platform :ios, '12.4'
|
||||
install! 'cocoapods', :deterministic_uuids => false
|
||||
platform :ios, min_ios_version_supported
|
||||
prepare_react_native_project!
|
||||
|
||||
# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
|
||||
# because `react-native-flipper` depends on (FlipperKit,...) that will be excluded
|
||||
#
|
||||
# To fix this you can also exclude `react-native-flipper` using a `react-native.config.js`
|
||||
# ```js
|
||||
# module.exports = {
|
||||
# dependencies: {
|
||||
# ...(process.env.NO_FLIPPER ? { 'react-native-flipper': { platforms: { ios: null } } } : {}),
|
||||
# ```
|
||||
flipper_config = ENV['NO_FLIPPER'] == "1" ? FlipperConfiguration.disabled : FlipperConfiguration.enabled
|
||||
|
||||
linkage = ENV['USE_FRAMEWORKS']
|
||||
if linkage != nil
|
||||
Pod::UI.puts "Configuring Pod with #{linkage}ally linked Frameworks".green
|
||||
use_frameworks! :linkage => linkage.to_sym
|
||||
end
|
||||
|
||||
target 'Fintunes' do
|
||||
config = use_native_modules!
|
||||
@@ -15,13 +32,13 @@ target 'Fintunes' do
|
||||
# Hermes is now enabled by default. Disable by setting this flag to false.
|
||||
# Upcoming versions of React Native may rely on get_default_flags(), but
|
||||
# we make it explicit here to aid in the React Native upgrade process.
|
||||
:hermes_enabled => true,
|
||||
:hermes_enabled => flags[:hermes_enabled],
|
||||
:fabric_enabled => flags[:fabric_enabled],
|
||||
# Enables Flipper.
|
||||
#
|
||||
# Note that if you have use_frameworks! enabled, Flipper will not work and
|
||||
# you should disable the next line.
|
||||
:flipper_configuration => FlipperConfiguration.enabled(["Debug"], {'Flipper' => '0.164.0'}),
|
||||
:flipper_configuration => flipper_config,
|
||||
# An absolute path to your application root.
|
||||
:app_path => "#{Pod::Config.instance.installation_root}/.."
|
||||
)
|
||||
|
||||
627
ios/Podfile.lock
627
ios/Podfile.lock
@@ -2,16 +2,17 @@ PODS:
|
||||
- boost (1.76.0)
|
||||
- CocoaAsyncSocket (7.6.5)
|
||||
- DoubleConversion (1.1.6)
|
||||
- FBLazyVector (0.70.8)
|
||||
- FBReactNativeSpec (0.70.8):
|
||||
- FBLazyVector (0.71.7)
|
||||
- FBReactNativeSpec (0.71.7):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTRequired (= 0.70.8)
|
||||
- RCTTypeSafety (= 0.70.8)
|
||||
- React-Core (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- Flipper (0.164.0):
|
||||
- RCTRequired (= 0.71.7)
|
||||
- RCTTypeSafety (= 0.71.7)
|
||||
- React-Core (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- Flipper (0.125.0):
|
||||
- Flipper-Folly (~> 2.6)
|
||||
- Flipper-RSocket (~> 1.4)
|
||||
- Flipper-Boost-iOSX (1.76.0.1.11)
|
||||
- Flipper-DoubleConversion (3.2.0.1)
|
||||
- Flipper-Fmt (7.1.7)
|
||||
@@ -26,53 +27,55 @@ PODS:
|
||||
- Flipper-PeerTalk (0.0.4)
|
||||
- Flipper-RSocket (1.4.3):
|
||||
- Flipper-Folly (~> 2.6)
|
||||
- FlipperKit (0.164.0):
|
||||
- FlipperKit/Core (= 0.164.0)
|
||||
- FlipperKit/Core (0.164.0):
|
||||
- Flipper (~> 0.164.0)
|
||||
- FlipperKit (0.125.0):
|
||||
- FlipperKit/Core (= 0.125.0)
|
||||
- FlipperKit/Core (0.125.0):
|
||||
- Flipper (~> 0.125.0)
|
||||
- FlipperKit/CppBridge
|
||||
- FlipperKit/FBCxxFollyDynamicConvert
|
||||
- FlipperKit/FBDefines
|
||||
- FlipperKit/FKPortForwarding
|
||||
- SocketRocket (~> 0.6.0)
|
||||
- FlipperKit/CppBridge (0.164.0):
|
||||
- Flipper (~> 0.164.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.164.0):
|
||||
- FlipperKit/CppBridge (0.125.0):
|
||||
- Flipper (~> 0.125.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (0.125.0):
|
||||
- Flipper-Folly (~> 2.6)
|
||||
- FlipperKit/FBDefines (0.164.0)
|
||||
- FlipperKit/FKPortForwarding (0.164.0):
|
||||
- FlipperKit/FBDefines (0.125.0)
|
||||
- FlipperKit/FKPortForwarding (0.125.0):
|
||||
- CocoaAsyncSocket (~> 7.6)
|
||||
- Flipper-PeerTalk (~> 0.0.4)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.164.0)
|
||||
- FlipperKit/FlipperKitLayoutHelpers (0.164.0):
|
||||
- FlipperKit/FlipperKitHighlightOverlay (0.125.0)
|
||||
- FlipperKit/FlipperKitLayoutHelpers (0.125.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.164.0):
|
||||
- FlipperKit/FlipperKitLayoutIOSDescriptors (0.125.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutHelpers
|
||||
- YogaKit (~> 1.18)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.164.0):
|
||||
- FlipperKit/FlipperKitLayoutPlugin (0.125.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitHighlightOverlay
|
||||
- FlipperKit/FlipperKitLayoutHelpers
|
||||
- FlipperKit/FlipperKitLayoutIOSDescriptors
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable
|
||||
- YogaKit (~> 1.18)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.164.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.164.0):
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (0.125.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (0.125.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitReactPlugin (0.164.0):
|
||||
- FlipperKit/FlipperKitReactPlugin (0.125.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.164.0):
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (0.125.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.164.0):
|
||||
- FlipperKit/SKIOSNetworkPlugin (0.125.0):
|
||||
- FlipperKit/Core
|
||||
- FlipperKit/FlipperKitNetworkPlugin
|
||||
- fmt (6.2.1)
|
||||
- glog (0.3.5)
|
||||
- hermes-engine (0.70.8)
|
||||
- hermes-engine (0.71.7):
|
||||
- hermes-engine/Pre-built (= 0.71.7)
|
||||
- hermes-engine/Pre-built (0.71.7)
|
||||
- libevent (2.1.12)
|
||||
- libwebp (1.2.4):
|
||||
- libwebp/demux (= 1.2.4)
|
||||
@@ -101,216 +104,241 @@ PODS:
|
||||
- fmt (~> 6.2.1)
|
||||
- glog
|
||||
- libevent
|
||||
- RCTRequired (0.70.8)
|
||||
- RCTTypeSafety (0.70.8):
|
||||
- FBLazyVector (= 0.70.8)
|
||||
- RCTRequired (= 0.70.8)
|
||||
- React-Core (= 0.70.8)
|
||||
- React (0.70.8):
|
||||
- React-Core (= 0.70.8)
|
||||
- React-Core/DevSupport (= 0.70.8)
|
||||
- React-Core/RCTWebSocket (= 0.70.8)
|
||||
- React-RCTActionSheet (= 0.70.8)
|
||||
- React-RCTAnimation (= 0.70.8)
|
||||
- React-RCTBlob (= 0.70.8)
|
||||
- React-RCTImage (= 0.70.8)
|
||||
- React-RCTLinking (= 0.70.8)
|
||||
- React-RCTNetwork (= 0.70.8)
|
||||
- React-RCTSettings (= 0.70.8)
|
||||
- React-RCTText (= 0.70.8)
|
||||
- React-RCTVibration (= 0.70.8)
|
||||
- RCTRequired (0.71.7)
|
||||
- RCTTypeSafety (0.71.7):
|
||||
- FBLazyVector (= 0.71.7)
|
||||
- RCTRequired (= 0.71.7)
|
||||
- React-Core (= 0.71.7)
|
||||
- React (0.71.7):
|
||||
- React-Core (= 0.71.7)
|
||||
- React-Core/DevSupport (= 0.71.7)
|
||||
- React-Core/RCTWebSocket (= 0.71.7)
|
||||
- React-RCTActionSheet (= 0.71.7)
|
||||
- React-RCTAnimation (= 0.71.7)
|
||||
- React-RCTBlob (= 0.71.7)
|
||||
- React-RCTImage (= 0.71.7)
|
||||
- React-RCTLinking (= 0.71.7)
|
||||
- React-RCTNetwork (= 0.71.7)
|
||||
- React-RCTSettings (= 0.71.7)
|
||||
- React-RCTText (= 0.71.7)
|
||||
- React-RCTVibration (= 0.71.7)
|
||||
- react-airplay (1.2.0):
|
||||
- React-Core
|
||||
- React-bridging (0.70.8):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-callinvoker (0.70.8)
|
||||
- React-Codegen (0.70.8):
|
||||
- FBReactNativeSpec (= 0.70.8)
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTRequired (= 0.70.8)
|
||||
- RCTTypeSafety (= 0.70.8)
|
||||
- React-Core (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-Core (0.70.8):
|
||||
- React-callinvoker (0.71.7)
|
||||
- React-Codegen (0.71.7):
|
||||
- FBReactNativeSpec
|
||||
- hermes-engine
|
||||
- RCT-Folly
|
||||
- RCTRequired
|
||||
- RCTTypeSafety
|
||||
- React-Core
|
||||
- React-jsi
|
||||
- React-jsiexecutor
|
||||
- ReactCommon/turbomodule/bridging
|
||||
- ReactCommon/turbomodule/core
|
||||
- React-Core (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default (= 0.70.8)
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-Core/Default (= 0.71.7)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/CoreModulesHeaders (0.70.8):
|
||||
- React-Core/CoreModulesHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/Default (0.70.8):
|
||||
- React-Core/Default (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/DevSupport (0.70.8):
|
||||
- React-Core/DevSupport (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default (= 0.70.8)
|
||||
- React-Core/RCTWebSocket (= 0.70.8)
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-jsinspector (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-Core/Default (= 0.71.7)
|
||||
- React-Core/RCTWebSocket (= 0.71.7)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-jsinspector (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTActionSheetHeaders (0.70.8):
|
||||
- React-Core/RCTActionSheetHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTAnimationHeaders (0.70.8):
|
||||
- React-Core/RCTAnimationHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTBlobHeaders (0.70.8):
|
||||
- React-Core/RCTBlobHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTImageHeaders (0.70.8):
|
||||
- React-Core/RCTImageHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTLinkingHeaders (0.70.8):
|
||||
- React-Core/RCTLinkingHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTNetworkHeaders (0.70.8):
|
||||
- React-Core/RCTNetworkHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTSettingsHeaders (0.70.8):
|
||||
- React-Core/RCTSettingsHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTTextHeaders (0.70.8):
|
||||
- React-Core/RCTTextHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTVibrationHeaders (0.70.8):
|
||||
- React-Core/RCTVibrationHeaders (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-Core/RCTWebSocket (0.70.8):
|
||||
- React-Core/RCTWebSocket (0.71.7):
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Core/Default (= 0.70.8)
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-Core/Default (= 0.71.7)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-hermes
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- Yoga
|
||||
- React-CoreModules (0.70.8):
|
||||
- React-CoreModules (0.71.7):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.70.8)
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/CoreModulesHeaders (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-RCTImage (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-cxxreact (0.70.8):
|
||||
- RCTTypeSafety (= 0.71.7)
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/CoreModulesHeaders (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-RCTBlob
|
||||
- React-RCTImage (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-cxxreact (0.71.7):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-callinvoker (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsinspector (= 0.70.8)
|
||||
- React-logger (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-runtimeexecutor (= 0.70.8)
|
||||
- React-hermes (0.70.8):
|
||||
- React-callinvoker (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-jsinspector (= 0.71.7)
|
||||
- React-logger (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- React-runtimeexecutor (= 0.71.7)
|
||||
- React-hermes (0.71.7):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCT-Folly/Futures (= 2021.07.22.00)
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-jsiexecutor (= 0.70.8)
|
||||
- React-jsinspector (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-jsi (0.70.8):
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-jsi
|
||||
- React-jsiexecutor (= 0.71.7)
|
||||
- React-jsinspector (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- React-jsi (0.71.7):
|
||||
- boost (= 1.76.0)
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-jsi/Default (= 0.70.8)
|
||||
- React-jsi/Default (0.70.8):
|
||||
- boost (= 1.76.0)
|
||||
- React-jsiexecutor (0.71.7):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-jsiexecutor (0.70.8):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-jsinspector (0.70.8)
|
||||
- React-logger (0.70.8):
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- React-jsinspector (0.71.7)
|
||||
- React-logger (0.71.7):
|
||||
- glog
|
||||
- react-native-blur (4.3.0):
|
||||
- React-Core
|
||||
@@ -324,32 +352,7 @@ PODS:
|
||||
- RCTTypeSafety
|
||||
- React-Core
|
||||
- ReactCommon/turbomodule/core
|
||||
- react-native-skia (0.1.157):
|
||||
- React
|
||||
- React-callinvoker
|
||||
- React-Core
|
||||
- react-native-skia/Api (= 0.1.157)
|
||||
- react-native-skia/Jsi (= 0.1.157)
|
||||
- react-native-skia/RNSkia (= 0.1.157)
|
||||
- react-native-skia/SkiaHeaders (= 0.1.157)
|
||||
- react-native-skia/Utils (= 0.1.157)
|
||||
- react-native-skia/Api (0.1.157):
|
||||
- React
|
||||
- React-callinvoker
|
||||
- React-Core
|
||||
- react-native-skia/Jsi (0.1.157):
|
||||
- React
|
||||
- React-callinvoker
|
||||
- React-Core
|
||||
- react-native-skia/RNSkia (0.1.157):
|
||||
- React
|
||||
- React-callinvoker
|
||||
- React-Core
|
||||
- react-native-skia/SkiaHeaders (0.1.157):
|
||||
- React
|
||||
- React-callinvoker
|
||||
- React-Core
|
||||
- react-native-skia/Utils (0.1.157):
|
||||
- react-native-skia (0.1.185):
|
||||
- React
|
||||
- React-callinvoker
|
||||
- React-Core
|
||||
@@ -358,72 +361,90 @@ PODS:
|
||||
- SwiftAudioEx (= 0.15.3)
|
||||
- react-native-webview (11.23.1):
|
||||
- React-Core
|
||||
- React-perflogger (0.70.8)
|
||||
- React-RCTActionSheet (0.70.8):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.70.8)
|
||||
- React-RCTAnimation (0.70.8):
|
||||
- React-perflogger (0.71.7)
|
||||
- React-RCTActionSheet (0.71.7):
|
||||
- React-Core/RCTActionSheetHeaders (= 0.71.7)
|
||||
- React-RCTAnimation (0.71.7):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.70.8)
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/RCTAnimationHeaders (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-RCTBlob (0.70.8):
|
||||
- RCTTypeSafety (= 0.71.7)
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/RCTAnimationHeaders (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-RCTAppDelegate (0.71.7):
|
||||
- RCT-Folly
|
||||
- RCTRequired
|
||||
- RCTTypeSafety
|
||||
- React-Core
|
||||
- ReactCommon/turbomodule/core
|
||||
- React-RCTBlob (0.71.7):
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/RCTBlobHeaders (= 0.70.8)
|
||||
- React-Core/RCTWebSocket (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-RCTNetwork (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-RCTImage (0.70.8):
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/RCTBlobHeaders (= 0.71.7)
|
||||
- React-Core/RCTWebSocket (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-RCTNetwork (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-RCTImage (0.71.7):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.70.8)
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/RCTImageHeaders (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-RCTNetwork (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-RCTLinking (0.70.8):
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/RCTLinkingHeaders (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-RCTNetwork (0.70.8):
|
||||
- RCTTypeSafety (= 0.71.7)
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/RCTImageHeaders (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-RCTNetwork (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-RCTLinking (0.71.7):
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/RCTLinkingHeaders (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-RCTNetwork (0.71.7):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.70.8)
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/RCTNetworkHeaders (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-RCTSettings (0.70.8):
|
||||
- RCTTypeSafety (= 0.71.7)
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/RCTNetworkHeaders (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-RCTSettings (0.71.7):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- RCTTypeSafety (= 0.70.8)
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/RCTSettingsHeaders (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-RCTText (0.70.8):
|
||||
- React-Core/RCTTextHeaders (= 0.70.8)
|
||||
- React-RCTVibration (0.70.8):
|
||||
- RCTTypeSafety (= 0.71.7)
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/RCTSettingsHeaders (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-RCTText (0.71.7):
|
||||
- React-Core/RCTTextHeaders (= 0.71.7)
|
||||
- React-RCTVibration (0.71.7):
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-Codegen (= 0.70.8)
|
||||
- React-Core/RCTVibrationHeaders (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (= 0.70.8)
|
||||
- React-runtimeexecutor (0.70.8):
|
||||
- React-jsi (= 0.70.8)
|
||||
- ReactCommon/turbomodule/core (0.70.8):
|
||||
- React-Codegen (= 0.71.7)
|
||||
- React-Core/RCTVibrationHeaders (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (= 0.71.7)
|
||||
- React-runtimeexecutor (0.71.7):
|
||||
- React-jsi (= 0.71.7)
|
||||
- ReactCommon/turbomodule/bridging (0.71.7):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-bridging (= 0.70.8)
|
||||
- React-callinvoker (= 0.70.8)
|
||||
- React-Core (= 0.70.8)
|
||||
- React-cxxreact (= 0.70.8)
|
||||
- React-jsi (= 0.70.8)
|
||||
- React-logger (= 0.70.8)
|
||||
- React-perflogger (= 0.70.8)
|
||||
- React-callinvoker (= 0.71.7)
|
||||
- React-Core (= 0.71.7)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-logger (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- ReactCommon/turbomodule/core (0.71.7):
|
||||
- DoubleConversion
|
||||
- glog
|
||||
- hermes-engine
|
||||
- RCT-Folly (= 2021.07.22.00)
|
||||
- React-callinvoker (= 0.71.7)
|
||||
- React-Core (= 0.71.7)
|
||||
- React-cxxreact (= 0.71.7)
|
||||
- React-jsi (= 0.71.7)
|
||||
- React-logger (= 0.71.7)
|
||||
- React-perflogger (= 0.71.7)
|
||||
- RNCAsyncStorage (1.17.11):
|
||||
- React-Core
|
||||
- RNFastImage (8.6.3):
|
||||
@@ -491,7 +512,7 @@ DEPENDENCIES:
|
||||
- DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
|
||||
- FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`)
|
||||
- FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`)
|
||||
- Flipper (= 0.164.0)
|
||||
- Flipper (= 0.125.0)
|
||||
- Flipper-Boost-iOSX (= 1.76.0.1.11)
|
||||
- Flipper-DoubleConversion (= 3.2.0.1)
|
||||
- Flipper-Fmt (= 7.1.7)
|
||||
@@ -499,21 +520,21 @@ DEPENDENCIES:
|
||||
- Flipper-Glog (= 0.5.0.5)
|
||||
- Flipper-PeerTalk (= 0.0.4)
|
||||
- Flipper-RSocket (= 1.4.3)
|
||||
- FlipperKit (= 0.164.0)
|
||||
- FlipperKit/Core (= 0.164.0)
|
||||
- FlipperKit/CppBridge (= 0.164.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.164.0)
|
||||
- FlipperKit/FBDefines (= 0.164.0)
|
||||
- FlipperKit/FKPortForwarding (= 0.164.0)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (= 0.164.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (= 0.164.0)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.164.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (= 0.164.0)
|
||||
- FlipperKit/FlipperKitReactPlugin (= 0.164.0)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.164.0)
|
||||
- FlipperKit/SKIOSNetworkPlugin (= 0.164.0)
|
||||
- FlipperKit (= 0.125.0)
|
||||
- FlipperKit/Core (= 0.125.0)
|
||||
- FlipperKit/CppBridge (= 0.125.0)
|
||||
- FlipperKit/FBCxxFollyDynamicConvert (= 0.125.0)
|
||||
- FlipperKit/FBDefines (= 0.125.0)
|
||||
- FlipperKit/FKPortForwarding (= 0.125.0)
|
||||
- FlipperKit/FlipperKitHighlightOverlay (= 0.125.0)
|
||||
- FlipperKit/FlipperKitLayoutPlugin (= 0.125.0)
|
||||
- FlipperKit/FlipperKitLayoutTextSearchable (= 0.125.0)
|
||||
- FlipperKit/FlipperKitNetworkPlugin (= 0.125.0)
|
||||
- FlipperKit/FlipperKitReactPlugin (= 0.125.0)
|
||||
- FlipperKit/FlipperKitUserDefaultsPlugin (= 0.125.0)
|
||||
- FlipperKit/SKIOSNetworkPlugin (= 0.125.0)
|
||||
- glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
|
||||
- hermes-engine (from `../node_modules/react-native/sdks/hermes/hermes-engine.podspec`)
|
||||
- hermes-engine (from `../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
|
||||
- libevent (~> 2.1.12)
|
||||
- OpenSSL-Universal (= 1.1.1100)
|
||||
- RCT-Folly (from `../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
|
||||
@@ -521,7 +542,6 @@ DEPENDENCIES:
|
||||
- RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`)
|
||||
- React (from `../node_modules/react-native/`)
|
||||
- react-airplay (from `../node_modules/react-airplay`)
|
||||
- React-bridging (from `../node_modules/react-native/ReactCommon`)
|
||||
- React-callinvoker (from `../node_modules/react-native/ReactCommon/callinvoker`)
|
||||
- React-Codegen (from `build/generated/ios`)
|
||||
- React-Core (from `../node_modules/react-native/`)
|
||||
@@ -544,6 +564,7 @@ DEPENDENCIES:
|
||||
- React-perflogger (from `../node_modules/react-native/ReactCommon/reactperflogger`)
|
||||
- React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`)
|
||||
- React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`)
|
||||
- React-RCTAppDelegate (from `../node_modules/react-native/Libraries/AppDelegate`)
|
||||
- React-RCTBlob (from `../node_modules/react-native/Libraries/Blob`)
|
||||
- React-RCTImage (from `../node_modules/react-native/Libraries/Image`)
|
||||
- React-RCTLinking (from `../node_modules/react-native/Libraries/LinkingIOS`)
|
||||
@@ -599,7 +620,7 @@ EXTERNAL SOURCES:
|
||||
glog:
|
||||
:podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec"
|
||||
hermes-engine:
|
||||
:podspec: "../node_modules/react-native/sdks/hermes/hermes-engine.podspec"
|
||||
:podspec: "../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec"
|
||||
RCT-Folly:
|
||||
:podspec: "../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
|
||||
RCTRequired:
|
||||
@@ -610,8 +631,6 @@ EXTERNAL SOURCES:
|
||||
:path: "../node_modules/react-native/"
|
||||
react-airplay:
|
||||
:path: "../node_modules/react-airplay"
|
||||
React-bridging:
|
||||
:path: "../node_modules/react-native/ReactCommon"
|
||||
React-callinvoker:
|
||||
:path: "../node_modules/react-native/ReactCommon/callinvoker"
|
||||
React-Codegen:
|
||||
@@ -652,6 +671,8 @@ EXTERNAL SOURCES:
|
||||
:path: "../node_modules/react-native/Libraries/ActionSheetIOS"
|
||||
React-RCTAnimation:
|
||||
:path: "../node_modules/react-native/Libraries/NativeAnimation"
|
||||
React-RCTAppDelegate:
|
||||
:path: "../node_modules/react-native/Libraries/AppDelegate"
|
||||
React-RCTBlob:
|
||||
:path: "../node_modules/react-native/Libraries/Blob"
|
||||
React-RCTImage:
|
||||
@@ -695,9 +716,9 @@ SPEC CHECKSUMS:
|
||||
boost: a7c83b31436843459a1961bfd74b96033dc77234
|
||||
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
|
||||
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
|
||||
FBLazyVector: ce6c993e675c5e9684e3b83aa0c346eb116c3ec6
|
||||
FBReactNativeSpec: d8772db98ada3c2daf8f65e2105ada77bf209c02
|
||||
Flipper: d08578a2cc23c60c27086b07930efaeb39101342
|
||||
FBLazyVector: a89a0525bc7ca174675045c2b492b5280d5a2470
|
||||
FBReactNativeSpec: 7714e6bc1e9ea23df6c4cb42f0b2fd9c6a3a559c
|
||||
Flipper: 26fc4b7382499f1281eb8cb921e5c3ad6de91fe0
|
||||
Flipper-Boost-iOSX: fd1e2b8cbef7e662a122412d7ac5f5bea715403c
|
||||
Flipper-DoubleConversion: 2dc99b02f658daf147069aad9dbd29d8feb06d30
|
||||
Flipper-Fmt: 60cbdd92fc254826e61d669a5d87ef7015396a9b
|
||||
@@ -705,54 +726,54 @@ SPEC CHECKSUMS:
|
||||
Flipper-Glog: 70c50ce58ddaf67dc35180db05f191692570f446
|
||||
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
||||
Flipper-RSocket: d9d9ade67cbecf6ac10730304bf5607266dd2541
|
||||
FlipperKit: ddf459d2625ca33f115492de5ba6d970e2576311
|
||||
FlipperKit: cbdee19bdd4e7f05472a66ce290f1b729ba3cb86
|
||||
fmt: ff9d55029c625d3757ed641535fd4a75fedc7ce9
|
||||
glog: 04b94705f318337d7ead9e6d17c019bd9b1f6b1b
|
||||
hermes-engine: 0b19f33a9c2ec1dbdede3232606eeb1101db4cec
|
||||
hermes-engine: 4438d2b8bf8bebaba1b1ac0451160bab59e491f8
|
||||
libevent: 4049cae6c81cdb3654a443be001fb9bdceff7913
|
||||
libwebp: f62cb61d0a484ba548448a4bd52aabf150ff6eef
|
||||
OpenSSL-Universal: ebc357f1e6bc71fa463ccb2fe676756aff50e88c
|
||||
RCT-Folly: 0080d0a6ebf2577475bda044aa59e2ca1f909cda
|
||||
RCTRequired: 35a7977a5a3cb2d3830c3fef7352b7b116115829
|
||||
RCTTypeSafety: 259790fb8b16c94e57e0d3d1e2479e69a2b93f50
|
||||
React: 89f0551b8f7a555e38ce016a81c50bc68f1972a8
|
||||
RCTRequired: 5a4a30ac20c86eeadd6844a9328f78d4168cf9b2
|
||||
RCTTypeSafety: 279fc5861a89f0f37db3a585f27f971485b4b734
|
||||
React: 88307a9be3bd0e71a6822271cf28b84a587fb97f
|
||||
react-airplay: 8197767f12cae11a7623b1507d29a89482a720ad
|
||||
React-bridging: 2e425b6bc8536206918fa55bf9dd37016f99bb33
|
||||
React-callinvoker: 1c733126b1e4d95d0d412d95c51cedf06b3b979d
|
||||
React-Codegen: 41d2ddcd966eac2a5f2698d5cd21e3d741e999bd
|
||||
React-Core: 3021f04b6b1a2064952e166470a58db671ed65b1
|
||||
React-CoreModules: f569f295874d0864bfd7a686dad3f828f4e8813a
|
||||
React-cxxreact: a6c952ae24061777510f7e60b808b673e624009e
|
||||
React-hermes: be32d1db90d052cc025a38ec2ea4e1a493d33c6a
|
||||
React-jsi: 3d7bafe69dddd780fb3527b7f939dfcbfd6790b5
|
||||
React-jsiexecutor: bc8556d76f83a1a9075cdee207aad7c0b7b30a33
|
||||
React-jsinspector: 5e5497c844f2381e8648ec3a7d0ad25b3f27f23e
|
||||
React-logger: b277ad8f4473f2506fb30b762b6348534a3de10e
|
||||
React-callinvoker: 35fb980c454104ebe82f0afb9826830089248e08
|
||||
React-Codegen: a8dbde3b7476d5c19437d2adb9e8ea1b426b9595
|
||||
React-Core: 385cb6fa78762c6409ff39faeb0dd9ad664b6e84
|
||||
React-CoreModules: c2b7db313b04d9b71954ffd55d0c2e46bc40e9fb
|
||||
React-cxxreact: 845fefb889132e5d004ff818f7a599e32c52e7d6
|
||||
React-hermes: 86135f35e1dd2dfccfb97afe96d0c06f6a3970c4
|
||||
React-jsi: 39c116aa6c3d6f3d9874eff6998a670b47882a28
|
||||
React-jsiexecutor: eaa5f71eb8f6861cf0e57f1a0f52aeb020d9e18e
|
||||
React-jsinspector: 9885f6f94d231b95a739ef7bb50536fb87ce7539
|
||||
React-logger: 3f8ebad1be1bf3299d1ab6d7f971802d7395c7ef
|
||||
react-native-blur: 50c9feabacbc5f49b61337ebc32192c6be7ec3c3
|
||||
react-native-flipper: c33a4995958ef12a2b2f8290d63bed7adeed7634
|
||||
react-native-netinfo: f80db8cac2151405633324cb645c60af098ee461
|
||||
react-native-safe-area-context: 99b24a0c5acd0d5dcac2b1a7f18c49ea317be99a
|
||||
react-native-skia: 7f9a3bd36c4247005e87005d912dcf6db76a6289
|
||||
react-native-skia: 8d65fa55196f437b475563b67b06a744f2ad4a0d
|
||||
react-native-track-player: 0c26d981b5097910486cbbeb6d8f5352d41be069
|
||||
react-native-webview: d33e2db8925d090871ffeb232dfa50cb3a727581
|
||||
React-perflogger: e9249a18e055cae96fdf685bf6145cbea62506c8
|
||||
React-RCTActionSheet: a6d2a544a4605a111ce80fa9319cc870ca3ea778
|
||||
React-RCTAnimation: 21b776b15aa5451a0b5bcb342fd2f346817c1101
|
||||
React-RCTBlob: 95f54d45305b4103b29d8b2c1e705b5c3183239a
|
||||
React-RCTImage: 1b76ab9e3b60313edd85bc3fd3e07c29cec6ab68
|
||||
React-RCTLinking: 7176da2a80f3056152a51587812d6d0c451b1f7b
|
||||
React-RCTNetwork: d36f896304e6ef2998f58cd4199a0239bd312318
|
||||
React-RCTSettings: 004b9a1afb5870f4bcd06521c088e738c1558940
|
||||
React-RCTText: a2606a79fdb52dd2bde0d7fde7726160fa16b70c
|
||||
React-RCTVibration: 19d21a3ed620352180800447771f68a101f196e9
|
||||
React-runtimeexecutor: f795fd426264709901c09432c6ce072f8400147e
|
||||
ReactCommon: c440e7f15075e81eb29802521c58a1f38b1aa903
|
||||
React-perflogger: 2d505bbe298e3b7bacdd9e542b15535be07220f6
|
||||
React-RCTActionSheet: 0e96e4560bd733c9b37efbf68f5b1a47615892fb
|
||||
React-RCTAnimation: fd138e26f120371c87e406745a27535e2c8a04ef
|
||||
React-RCTAppDelegate: 4a9fd1230a98dc3d4382f8a934dc9f50834d8335
|
||||
React-RCTBlob: 38a7185f06a0ce8153a023e63b406a28d67b955d
|
||||
React-RCTImage: 92b0966e7c1cadda889e961c474397ad5180e194
|
||||
React-RCTLinking: b80f8d0c6e94c54294b0048def51f57eaa9a27af
|
||||
React-RCTNetwork: 491b0c65ac22edbd6695d12d084b4943103b009b
|
||||
React-RCTSettings: 97af3e8abe0023349ec015910df3bda1a0380117
|
||||
React-RCTText: 33c85753bd714d527d2ae538dc56ec24c6783d84
|
||||
React-RCTVibration: 08f132cad9896458776f37c112e71d60aef1c6ae
|
||||
React-runtimeexecutor: c5c89f8f543842dd864b63ded1b0bbb9c9445328
|
||||
ReactCommon: dbfbe2f7f3c5ce4ce44f43f2fd0d5950d1eb67c5
|
||||
RNCAsyncStorage: 8616bd5a58af409453ea4e1b246521bb76578d60
|
||||
RNFastImage: 5c9c9fed9c076e521b3f509fe79e790418a544e8
|
||||
RNFS: 4ac0f0ea233904cb798630b3c077808c06931688
|
||||
RNGestureHandler: 071d7a9ad81e8b83fe7663b303d132406a7d8f39
|
||||
RNLocalize: 0df7970cfc60389f00eb62fd7c097dc75af3fb4f
|
||||
RNReanimated: 6668b0587bebd4b15dd849b99e5a9c70fc12ed95
|
||||
RNReanimated: cc5e3aa479cb9170bcccf8204291a6950a3be128
|
||||
RNScreens: 34cc502acf1b916c582c60003dc3089fa01dc66d
|
||||
RNSentry: db7fd7b66efda28885e4e904a8b5e7349aec61c1
|
||||
RNSVG: 38ca962c970dbce1ca38991a5aebf26d163f9efb
|
||||
@@ -761,9 +782,9 @@ SPEC CHECKSUMS:
|
||||
Sentry: 4272663eb0eda312024d795ca3f5a562a8ce5e18
|
||||
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
|
||||
SwiftAudioEx: 83eabba2940924fc1c0d5cb0896049921365229c
|
||||
Yoga: d6133108734e69e8c0becc6ba587294b94829687
|
||||
Yoga: d56980c8914db0b51692f55533409e844b66133c
|
||||
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
||||
|
||||
PODFILE CHECKSUM: 94434618afff1be257dd0576e9a75bcaa7b48664
|
||||
PODFILE CHECKSUM: ea38040b3196201bcdeba55be08b1d191b2b8c88
|
||||
|
||||
COCOAPODS: 1.12.0
|
||||
|
||||
Reference in New Issue
Block a user