mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c2404b4598
Summary: This should fix https://github.com/facebook/react-native/issues/29082 and https://github.com/facebook/react-native/issues/10471 Currently when an alert is being shown while a modal is being dismissed, it causes the alert not to show and In some cases it causes the UI to become unresponsive. I think this was caused by using RCTPresentedViewController to try and display the Alert the currently presented view. The View the Alert was going to be shown on is dismissed and the modal doesn't show. I implemented a new RCTAlertController to show the alert on top of the view, the modal being dismissed should now not interfere with the alert being shown. ## Changelog [iOS] [Fixed] - Fixed showing Alert while closing a Modal Pull Request resolved: https://github.com/facebook/react-native/pull/29295 Test Plan: To recreate the bug: 1. npx react-native init Test --version 0.63.0-rc.1 2. Paste the following code into App.js ```javascript /** * Sample React Native App * https://github.com/facebook/react-native * * format * flow strict-local */ import React from 'react'; import { SafeAreaView, StyleSheet, View, Text, StatusBar, Modal, Alert } from 'react-native'; const App: () => React$Node = () => { const [visible, setVisible] = React.useState(false) const onShowModal = () => { setVisible(true) } onCloseBroken = () => { setVisible(false) Alert.alert('Alert', 'Alert won\'t show') } onCloseWorking = () => { setVisible(false) setTimeout(() => Alert.alert('Alert', 'Works fine'), 10) } return ( <> <StatusBar barStyle="dark-content" /> <SafeAreaView style={styles.container}> <Text onPress={onShowModal}>Show modal</Text> </SafeAreaView> <Modal animationType="fade" visible={visible} onRequestClose={onCloseWorking} > <View style={styles.container}> <Text onPress={onCloseBroken}>Close modal immediately</Text> <Text onPress={onCloseWorking}>Close modal with delay</Text> </View> </Modal> </> ) } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'space-around', }, }) export default App ``` 3. cd Test && npx react-native run-ios 4. Show the modal and click the `Close modal immediately` button The first button doesn't show the alert, the second does because it gets rendered after the modal view is dismissed. After this commit, the alert always shows on top of every view properly. You can test by pointing the react native package to my branch by modifying the package json file like this ``` "react-native": "https://github.com/devon94/react-native.git#fix-ios-modal" ``` I was unable to reproduce the case where it causes the UI to be responsive in the test app but was able to reproduce it in our react native app at work. I can provide a video later if needed but the code is too complex to simplify into a test case. Reviewed By: sammy-SC Differential Revision: D22783371 Pulled By: PeteTheHeat fbshipit-source-id: 3e359645c610074ea855ee5686c59bdb9d6b696b # Conflicts: # RNTester/Podfile.lock
516 lines
17 KiB
Plaintext
516 lines
17 KiB
Plaintext
PODS:
|
|
- boost-for-react-native (1.63.0)
|
|
- CocoaAsyncSocket (7.6.4)
|
|
- CocoaLibEvent (1.0.0)
|
|
- DoubleConversion (1.1.6)
|
|
- FBLazyVector (0.63.3)
|
|
- FBReactNativeSpec (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- RCTRequired (= 0.63.3)
|
|
- RCTTypeSafety (= 0.63.3)
|
|
- React-Core (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- Flipper (0.54.0):
|
|
- Flipper-Folly (~> 2.2)
|
|
- Flipper-RSocket (~> 1.1)
|
|
- Flipper-DoubleConversion (1.1.7)
|
|
- Flipper-Folly (2.3.0):
|
|
- boost-for-react-native
|
|
- CocoaLibEvent (~> 1.0)
|
|
- Flipper-DoubleConversion
|
|
- Flipper-Glog
|
|
- OpenSSL-Universal (= 1.0.2.20)
|
|
- Flipper-Glog (0.3.6)
|
|
- Flipper-PeerTalk (0.0.4)
|
|
- Flipper-RSocket (1.1.0):
|
|
- Flipper-Folly (~> 2.2)
|
|
- FlipperKit (0.54.0):
|
|
- FlipperKit/Core (= 0.54.0)
|
|
- FlipperKit/Core (0.54.0):
|
|
- Flipper (~> 0.54.0)
|
|
- FlipperKit/CppBridge
|
|
- FlipperKit/FBCxxFollyDynamicConvert
|
|
- FlipperKit/FBDefines
|
|
- FlipperKit/FKPortForwarding
|
|
- FlipperKit/CppBridge (0.54.0):
|
|
- Flipper (~> 0.54.0)
|
|
- FlipperKit/FBCxxFollyDynamicConvert (0.54.0):
|
|
- Flipper-Folly (~> 2.2)
|
|
- FlipperKit/FBDefines (0.54.0)
|
|
- FlipperKit/FKPortForwarding (0.54.0):
|
|
- CocoaAsyncSocket (~> 7.6)
|
|
- Flipper-PeerTalk (~> 0.0.4)
|
|
- FlipperKit/FlipperKitHighlightOverlay (0.54.0)
|
|
- FlipperKit/FlipperKitLayoutPlugin (0.54.0):
|
|
- FlipperKit/Core
|
|
- FlipperKit/FlipperKitHighlightOverlay
|
|
- FlipperKit/FlipperKitLayoutTextSearchable
|
|
- YogaKit (~> 1.18)
|
|
- FlipperKit/FlipperKitLayoutTextSearchable (0.54.0)
|
|
- FlipperKit/FlipperKitNetworkPlugin (0.54.0):
|
|
- FlipperKit/Core
|
|
- FlipperKit/FlipperKitReactPlugin (0.54.0):
|
|
- FlipperKit/Core
|
|
- FlipperKit/FlipperKitUserDefaultsPlugin (0.54.0):
|
|
- FlipperKit/Core
|
|
- FlipperKit/SKIOSNetworkPlugin (0.54.0):
|
|
- FlipperKit/Core
|
|
- FlipperKit/FlipperKitNetworkPlugin
|
|
- Folly (2020.01.13.00):
|
|
- boost-for-react-native
|
|
- DoubleConversion
|
|
- Folly/Default (= 2020.01.13.00)
|
|
- glog
|
|
- Folly/Default (2020.01.13.00):
|
|
- boost-for-react-native
|
|
- DoubleConversion
|
|
- glog
|
|
- glog (0.3.5)
|
|
- OpenSSL-Universal (1.0.2.20):
|
|
- OpenSSL-Universal/Static (= 1.0.2.20)
|
|
- OpenSSL-Universal/Static (1.0.2.20)
|
|
- RCTRequired (0.63.3)
|
|
- RCTTypeSafety (0.63.3):
|
|
- FBLazyVector (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- RCTRequired (= 0.63.3)
|
|
- React-Core (= 0.63.3)
|
|
- React (0.63.3):
|
|
- React-Core (= 0.63.3)
|
|
- React-Core/DevSupport (= 0.63.3)
|
|
- React-Core/RCTWebSocket (= 0.63.3)
|
|
- React-RCTActionSheet (= 0.63.3)
|
|
- React-RCTAnimation (= 0.63.3)
|
|
- React-RCTBlob (= 0.63.3)
|
|
- React-RCTImage (= 0.63.3)
|
|
- React-RCTLinking (= 0.63.3)
|
|
- React-RCTNetwork (= 0.63.3)
|
|
- React-RCTSettings (= 0.63.3)
|
|
- React-RCTText (= 0.63.3)
|
|
- React-RCTVibration (= 0.63.3)
|
|
- React-ART (0.63.3):
|
|
- React-Core/ARTHeaders (= 0.63.3)
|
|
- React-callinvoker (0.63.3)
|
|
- React-Core (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default (= 0.63.3)
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/ARTHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/CoreModulesHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/Default (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/DevSupport (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default (= 0.63.3)
|
|
- React-Core/RCTWebSocket (= 0.63.3)
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- React-jsinspector (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTActionSheetHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTAnimationHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTBlobHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTImageHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTLinkingHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTNetworkHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTPushNotificationHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTSettingsHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTTextHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTVibrationHeaders (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-Core/RCTWebSocket (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-Core/Default (= 0.63.3)
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsiexecutor (= 0.63.3)
|
|
- Yoga
|
|
- React-CoreModules (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- RCTTypeSafety (= 0.63.3)
|
|
- React-Core/CoreModulesHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-RCTImage (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-cxxreact (0.63.3):
|
|
- boost-for-react-native (= 1.63.0)
|
|
- DoubleConversion
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-callinvoker (= 0.63.3)
|
|
- React-jsinspector (= 0.63.3)
|
|
- React-jsi (0.63.3):
|
|
- boost-for-react-native (= 1.63.0)
|
|
- DoubleConversion
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-jsi/Default (= 0.63.3)
|
|
- React-jsi/Default (0.63.3):
|
|
- boost-for-react-native (= 1.63.0)
|
|
- DoubleConversion
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-jsiexecutor (0.63.3):
|
|
- DoubleConversion
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-jsinspector (0.63.3)
|
|
- React-RCTActionSheet (0.63.3):
|
|
- React-Core/RCTActionSheetHeaders (= 0.63.3)
|
|
- React-RCTAnimation (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- RCTTypeSafety (= 0.63.3)
|
|
- React-Core/RCTAnimationHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTBlob (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- React-Core/RCTBlobHeaders (= 0.63.3)
|
|
- React-Core/RCTWebSocket (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-RCTNetwork (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTImage (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- RCTTypeSafety (= 0.63.3)
|
|
- React-Core/RCTImageHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- React-RCTNetwork (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTLinking (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- React-Core/RCTLinkingHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTNetwork (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- RCTTypeSafety (= 0.63.3)
|
|
- React-Core/RCTNetworkHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTPushNotification (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- RCTTypeSafety (= 0.63.3)
|
|
- React-Core/RCTPushNotificationHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTSettings (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- RCTTypeSafety (= 0.63.3)
|
|
- React-Core/RCTSettingsHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTTest (0.63.3):
|
|
- Folly (= 2020.01.13.00)
|
|
- React-Core (= 0.63.3)
|
|
- React-CoreModules (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- React-RCTText (0.63.3):
|
|
- React-Core/RCTTextHeaders (= 0.63.3)
|
|
- React-RCTVibration (0.63.3):
|
|
- FBReactNativeSpec (= 0.63.3)
|
|
- Folly (= 2020.01.13.00)
|
|
- React-Core/RCTVibrationHeaders (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (0.63.3):
|
|
- DoubleConversion
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-callinvoker (= 0.63.3)
|
|
- React-Core (= 0.63.3)
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/samples (0.63.3):
|
|
- DoubleConversion
|
|
- Folly (= 2020.01.13.00)
|
|
- glog
|
|
- React-callinvoker (= 0.63.3)
|
|
- React-Core (= 0.63.3)
|
|
- React-cxxreact (= 0.63.3)
|
|
- React-jsi (= 0.63.3)
|
|
- ReactCommon/turbomodule/core (= 0.63.3)
|
|
- Yoga (1.14.0)
|
|
- YogaKit (1.18.1):
|
|
- Yoga (~> 1.14)
|
|
|
|
DEPENDENCIES:
|
|
- DoubleConversion (from `../third-party-podspecs/DoubleConversion.podspec`)
|
|
- FBLazyVector (from `../Libraries/FBLazyVector`)
|
|
- FBReactNativeSpec (from `../Libraries/FBReactNativeSpec`)
|
|
- Flipper (~> 0.54.0)
|
|
- Flipper-DoubleConversion (= 1.1.7)
|
|
- Flipper-Folly (~> 2.2)
|
|
- Flipper-Glog (= 0.3.6)
|
|
- Flipper-PeerTalk (~> 0.0.4)
|
|
- Flipper-RSocket (~> 1.1)
|
|
- FlipperKit (~> 0.54.0)
|
|
- FlipperKit/Core (~> 0.54.0)
|
|
- FlipperKit/CppBridge (~> 0.54.0)
|
|
- FlipperKit/FBCxxFollyDynamicConvert (~> 0.54.0)
|
|
- FlipperKit/FBDefines (~> 0.54.0)
|
|
- FlipperKit/FKPortForwarding (~> 0.54.0)
|
|
- FlipperKit/FlipperKitHighlightOverlay (~> 0.54.0)
|
|
- FlipperKit/FlipperKitLayoutPlugin (~> 0.54.0)
|
|
- FlipperKit/FlipperKitLayoutTextSearchable (~> 0.54.0)
|
|
- FlipperKit/FlipperKitNetworkPlugin (~> 0.54.0)
|
|
- FlipperKit/FlipperKitReactPlugin (~> 0.54.0)
|
|
- FlipperKit/FlipperKitUserDefaultsPlugin (~> 0.54.0)
|
|
- FlipperKit/SKIOSNetworkPlugin (~> 0.54.0)
|
|
- Folly (from `../third-party-podspecs/Folly.podspec`)
|
|
- glog (from `../third-party-podspecs/glog.podspec`)
|
|
- RCTRequired (from `../Libraries/RCTRequired`)
|
|
- RCTTypeSafety (from `../Libraries/TypeSafety`)
|
|
- React (from `../`)
|
|
- React-ART (from `../Libraries/ART`)
|
|
- React-callinvoker (from `../ReactCommon/callinvoker`)
|
|
- React-Core (from `../`)
|
|
- React-Core/DevSupport (from `../`)
|
|
- React-Core/RCTWebSocket (from `../`)
|
|
- React-CoreModules (from `../React/CoreModules`)
|
|
- React-cxxreact (from `../ReactCommon/cxxreact`)
|
|
- React-jsi (from `../ReactCommon/jsi`)
|
|
- React-jsiexecutor (from `../ReactCommon/jsiexecutor`)
|
|
- React-jsinspector (from `../ReactCommon/jsinspector`)
|
|
- React-RCTActionSheet (from `../Libraries/ActionSheetIOS`)
|
|
- React-RCTAnimation (from `../Libraries/NativeAnimation`)
|
|
- React-RCTBlob (from `../Libraries/Blob`)
|
|
- React-RCTImage (from `../Libraries/Image`)
|
|
- React-RCTLinking (from `../Libraries/LinkingIOS`)
|
|
- React-RCTNetwork (from `../Libraries/Network`)
|
|
- React-RCTPushNotification (from `../Libraries/PushNotificationIOS`)
|
|
- React-RCTSettings (from `../Libraries/Settings`)
|
|
- React-RCTTest (from `./RCTTest`)
|
|
- React-RCTText (from `../Libraries/Text`)
|
|
- React-RCTVibration (from `../Libraries/Vibration`)
|
|
- ReactCommon/turbomodule/core (from `../ReactCommon`)
|
|
- ReactCommon/turbomodule/samples (from `../ReactCommon`)
|
|
- Yoga (from `../ReactCommon/yoga`)
|
|
|
|
SPEC REPOS:
|
|
trunk:
|
|
- boost-for-react-native
|
|
- CocoaAsyncSocket
|
|
- CocoaLibEvent
|
|
- Flipper
|
|
- Flipper-DoubleConversion
|
|
- Flipper-Folly
|
|
- Flipper-Glog
|
|
- Flipper-PeerTalk
|
|
- Flipper-RSocket
|
|
- FlipperKit
|
|
- OpenSSL-Universal
|
|
- YogaKit
|
|
|
|
EXTERNAL SOURCES:
|
|
DoubleConversion:
|
|
:podspec: "../third-party-podspecs/DoubleConversion.podspec"
|
|
FBLazyVector:
|
|
:path: "../Libraries/FBLazyVector"
|
|
FBReactNativeSpec:
|
|
:path: "../Libraries/FBReactNativeSpec"
|
|
Folly:
|
|
:podspec: "../third-party-podspecs/Folly.podspec"
|
|
glog:
|
|
:podspec: "../third-party-podspecs/glog.podspec"
|
|
RCTRequired:
|
|
:path: "../Libraries/RCTRequired"
|
|
RCTTypeSafety:
|
|
:path: "../Libraries/TypeSafety"
|
|
React:
|
|
:path: "../"
|
|
React-ART:
|
|
:path: "../Libraries/ART"
|
|
React-callinvoker:
|
|
:path: "../ReactCommon/callinvoker"
|
|
React-Core:
|
|
:path: "../"
|
|
React-CoreModules:
|
|
:path: "../React/CoreModules"
|
|
React-cxxreact:
|
|
:path: "../ReactCommon/cxxreact"
|
|
React-jsi:
|
|
:path: "../ReactCommon/jsi"
|
|
React-jsiexecutor:
|
|
:path: "../ReactCommon/jsiexecutor"
|
|
React-jsinspector:
|
|
:path: "../ReactCommon/jsinspector"
|
|
React-RCTActionSheet:
|
|
:path: "../Libraries/ActionSheetIOS"
|
|
React-RCTAnimation:
|
|
:path: "../Libraries/NativeAnimation"
|
|
React-RCTBlob:
|
|
:path: "../Libraries/Blob"
|
|
React-RCTImage:
|
|
:path: "../Libraries/Image"
|
|
React-RCTLinking:
|
|
:path: "../Libraries/LinkingIOS"
|
|
React-RCTNetwork:
|
|
:path: "../Libraries/Network"
|
|
React-RCTPushNotification:
|
|
:path: "../Libraries/PushNotificationIOS"
|
|
React-RCTSettings:
|
|
:path: "../Libraries/Settings"
|
|
React-RCTTest:
|
|
:path: "./RCTTest"
|
|
React-RCTText:
|
|
:path: "../Libraries/Text"
|
|
React-RCTVibration:
|
|
:path: "../Libraries/Vibration"
|
|
ReactCommon:
|
|
:path: "../ReactCommon"
|
|
Yoga:
|
|
:path: "../ReactCommon/yoga"
|
|
|
|
SPEC CHECKSUMS:
|
|
boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
|
|
CocoaAsyncSocket: 694058e7c0ed05a9e217d1b3c7ded962f4180845
|
|
CocoaLibEvent: 2fab71b8bd46dd33ddb959f7928ec5909f838e3f
|
|
DoubleConversion: cde416483dac037923206447da6e1454df403714
|
|
FBLazyVector: 878b59e31113e289e275165efbe4b54fa614d43d
|
|
FBReactNativeSpec: 7da9338acfb98d4ef9e5536805a0704572d33c2f
|
|
Flipper: be611d4b742d8c87fbae2ca5f44603a02539e365
|
|
Flipper-DoubleConversion: 38631e41ef4f9b12861c67d17cb5518d06badc41
|
|
Flipper-Folly: e4493b013c02d9347d5e0cb4d128680239f6c78a
|
|
Flipper-Glog: 1dfd6abf1e922806c52ceb8701a3599a79a200a6
|
|
Flipper-PeerTalk: 116d8f857dc6ef55c7a5a75ea3ceaafe878aadc9
|
|
Flipper-RSocket: 64e7431a55835eb953b0bf984ef3b90ae9fdddd7
|
|
FlipperKit: ab353d41aea8aae2ea6daaf813e67496642f3d7d
|
|
Folly: b73c3869541e86821df3c387eb0af5f65addfab4
|
|
glog: 40a13f7840415b9a77023fbcae0f1e6f43192af3
|
|
OpenSSL-Universal: ff34003318d5e1163e9529b08470708e389ffcdd
|
|
RCTRequired: 48884c74035a0b5b76dbb7a998bd93bcfc5f2047
|
|
RCTTypeSafety: edf4b618033c2f1c5b7bc3d90d8e085ed95ba2ab
|
|
React: f36e90f3ceb976546e97df3403e37d226f79d0e3
|
|
React-ART: 20c4d06a9454453e90a598c22041058733877f1e
|
|
React-callinvoker: 18874f621eb96625df7a24a7dc8d6e07391affcd
|
|
React-Core: ac3d816b8e3493970153f4aaf0cff18af0bb95e6
|
|
React-CoreModules: 4016d3a4e518bcfc4f5a51252b5a05692ca6f0e1
|
|
React-cxxreact: ffc9129013b87cb36cf3f30a86695a3c397b0f99
|
|
React-jsi: df07aa95b39c5be3e41199921509bfa929ed2b9d
|
|
React-jsiexecutor: b56c03e61c0dd5f5801255f2160a815f4a53d451
|
|
React-jsinspector: 8e68ffbfe23880d3ee9bafa8be2777f60b25cbe2
|
|
React-RCTActionSheet: 53ea72699698b0b47a6421cb1c8b4ab215a774aa
|
|
React-RCTAnimation: 1befece0b5183c22ae01b966f5583f42e69a83c2
|
|
React-RCTBlob: 0b284339cbe4b15705a05e2313a51c6d8b51fa40
|
|
React-RCTImage: d1756599ebd4dc2cb19d1682fe67c6b976658387
|
|
React-RCTLinking: 9af0a51c6d6a4dd1674daadafffc6d03033a6d18
|
|
React-RCTNetwork: 332c83929cc5eae0b3bbca4add1d668e1fc18bda
|
|
React-RCTPushNotification: e4c2f387783fbf1e1a66c11c1f87a11fbc720b7c
|
|
React-RCTSettings: d6953772cfd55f2c68ad72b7ef29efc7ec49f773
|
|
React-RCTTest: 760a5cd745953a2a875dab68841de500d6998638
|
|
React-RCTText: 65a6de06a7389098ce24340d1d3556015c38f746
|
|
React-RCTVibration: 8e9fb25724a0805107fc1acc9075e26f814df454
|
|
ReactCommon: 4167844018c9ed375cc01a843e9ee564399e53c3
|
|
Yoga: 7d13633d129fd179e01b8953d38d47be90db185a
|
|
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
|
|
|
|
PODFILE CHECKSUM: 5f0be4be03d6934478b9dd621bfbab4383b8c85d
|
|
|
|
COCOAPODS: 1.10.0
|