From acacb50ad1b4c5f8378c1856aa0b916a8f3a7908 Mon Sep 17 00:00:00 2001 From: Mateo Silguero Date: Fri, 24 Apr 2020 12:06:53 -0300 Subject: [PATCH] fixed ios example --- README.md | 2 +- .../project.pbxproj | 0 .../xcschemes/ConsistencssExample.xcscheme} | 0 .../contents.xcworkspacedata | 3 + .../xcshareddata/IDEWorkspaceChecks.plist | 0 .../AppDelegate.h | 0 .../AppDelegate.m | 0 .../Base.lproj/LaunchScreen.xib | 0 .../AppIcon.appiconset/Contents.json | 0 .../Images.xcassets/Contents.json | 0 .../Info.plist | 0 .../main.m | 0 example/ios/Podfile | 2 +- example/ios/Podfile.lock | 392 ++++++++++++++++++ 14 files changed, 397 insertions(+), 2 deletions(-) rename example/ios/{PrincssExample.xcodeproj => ConsistencssExample.xcodeproj}/project.pbxproj (100%) rename example/ios/{PrincssExample.xcodeproj/xcshareddata/xcschemes/PrincssExample.xcscheme => ConsistencssExample.xcodeproj/xcshareddata/xcschemes/ConsistencssExample.xcscheme} (100%) rename example/ios/{PrincssExample.xcworkspace => ConsistencssExample.xcworkspace}/contents.xcworkspacedata (75%) rename example/ios/{PrincssExample.xcworkspace => ConsistencssExample.xcworkspace}/xcshareddata/IDEWorkspaceChecks.plist (100%) rename example/ios/{PrincssExample => ConsistencssExample}/AppDelegate.h (100%) rename example/ios/{PrincssExample => ConsistencssExample}/AppDelegate.m (100%) rename example/ios/{PrincssExample => ConsistencssExample}/Base.lproj/LaunchScreen.xib (100%) rename example/ios/{PrincssExample => ConsistencssExample}/Images.xcassets/AppIcon.appiconset/Contents.json (100%) rename example/ios/{PrincssExample => ConsistencssExample}/Images.xcassets/Contents.json (100%) rename example/ios/{PrincssExample => ConsistencssExample}/Info.plist (100%) rename example/ios/{PrincssExample => ConsistencssExample}/main.m (100%) create mode 100644 example/ios/Podfile.lock diff --git a/README.md b/README.md index 20f2740..6e113bc 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # consistencss -![logo](./website/static/img/logo.svg 'Logo') +![logo](https://consistencss.now.sh/img/logo.svg 'Logo') An "atomic css" style toolkit for React Native, inspired by [tailwindcss](https://tailwindcss.com/docs/installation/) diff --git a/example/ios/PrincssExample.xcodeproj/project.pbxproj b/example/ios/ConsistencssExample.xcodeproj/project.pbxproj similarity index 100% rename from example/ios/PrincssExample.xcodeproj/project.pbxproj rename to example/ios/ConsistencssExample.xcodeproj/project.pbxproj diff --git a/example/ios/PrincssExample.xcodeproj/xcshareddata/xcschemes/PrincssExample.xcscheme b/example/ios/ConsistencssExample.xcodeproj/xcshareddata/xcschemes/ConsistencssExample.xcscheme similarity index 100% rename from example/ios/PrincssExample.xcodeproj/xcshareddata/xcschemes/PrincssExample.xcscheme rename to example/ios/ConsistencssExample.xcodeproj/xcshareddata/xcschemes/ConsistencssExample.xcscheme diff --git a/example/ios/PrincssExample.xcworkspace/contents.xcworkspacedata b/example/ios/ConsistencssExample.xcworkspace/contents.xcworkspacedata similarity index 75% rename from example/ios/PrincssExample.xcworkspace/contents.xcworkspacedata rename to example/ios/ConsistencssExample.xcworkspace/contents.xcworkspacedata index aa331b0..ab00a4f 100644 --- a/example/ios/PrincssExample.xcworkspace/contents.xcworkspacedata +++ b/example/ios/ConsistencssExample.xcworkspace/contents.xcworkspacedata @@ -7,4 +7,7 @@ + + diff --git a/example/ios/PrincssExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/example/ios/ConsistencssExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist similarity index 100% rename from example/ios/PrincssExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist rename to example/ios/ConsistencssExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/example/ios/PrincssExample/AppDelegate.h b/example/ios/ConsistencssExample/AppDelegate.h similarity index 100% rename from example/ios/PrincssExample/AppDelegate.h rename to example/ios/ConsistencssExample/AppDelegate.h diff --git a/example/ios/PrincssExample/AppDelegate.m b/example/ios/ConsistencssExample/AppDelegate.m similarity index 100% rename from example/ios/PrincssExample/AppDelegate.m rename to example/ios/ConsistencssExample/AppDelegate.m diff --git a/example/ios/PrincssExample/Base.lproj/LaunchScreen.xib b/example/ios/ConsistencssExample/Base.lproj/LaunchScreen.xib similarity index 100% rename from example/ios/PrincssExample/Base.lproj/LaunchScreen.xib rename to example/ios/ConsistencssExample/Base.lproj/LaunchScreen.xib diff --git a/example/ios/PrincssExample/Images.xcassets/AppIcon.appiconset/Contents.json b/example/ios/ConsistencssExample/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 100% rename from example/ios/PrincssExample/Images.xcassets/AppIcon.appiconset/Contents.json rename to example/ios/ConsistencssExample/Images.xcassets/AppIcon.appiconset/Contents.json diff --git a/example/ios/PrincssExample/Images.xcassets/Contents.json b/example/ios/ConsistencssExample/Images.xcassets/Contents.json similarity index 100% rename from example/ios/PrincssExample/Images.xcassets/Contents.json rename to example/ios/ConsistencssExample/Images.xcassets/Contents.json diff --git a/example/ios/PrincssExample/Info.plist b/example/ios/ConsistencssExample/Info.plist similarity index 100% rename from example/ios/PrincssExample/Info.plist rename to example/ios/ConsistencssExample/Info.plist diff --git a/example/ios/PrincssExample/main.m b/example/ios/ConsistencssExample/main.m similarity index 100% rename from example/ios/PrincssExample/main.m rename to example/ios/ConsistencssExample/main.m diff --git a/example/ios/Podfile b/example/ios/Podfile index 38e8a26..e7858f8 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -26,7 +26,7 @@ target 'ConsistencssExample' do pod 'React-jsi', :path => '../node_modules/react-native/ReactCommon/jsi' pod 'React-jsiexecutor', :path => '../node_modules/react-native/ReactCommon/jsiexecutor' pod 'React-jsinspector', :path => '../node_modules/react-native/ReactCommon/jsinspector' - pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon" + pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon" pod 'ReactCommon/turbomodule/core', :path => "../node_modules/react-native/ReactCommon" pod 'Yoga', :path => '../node_modules/react-native/ReactCommon/yoga' diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock new file mode 100644 index 0000000..ef3dba5 --- /dev/null +++ b/example/ios/Podfile.lock @@ -0,0 +1,392 @@ +PODS: + - boost-for-react-native (1.63.0) + - DoubleConversion (1.1.6) + - FBLazyVector (0.62.0) + - FBReactNativeSpec (0.62.0): + - Folly (= 2018.10.22.00) + - RCTRequired (= 0.62.0) + - RCTTypeSafety (= 0.62.0) + - React-Core (= 0.62.0) + - React-jsi (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - Folly (2018.10.22.00): + - boost-for-react-native + - DoubleConversion + - Folly/Default (= 2018.10.22.00) + - glog + - Folly/Default (2018.10.22.00): + - boost-for-react-native + - DoubleConversion + - glog + - glog (0.3.5) + - RCTRequired (0.62.0) + - RCTTypeSafety (0.62.0): + - FBLazyVector (= 0.62.0) + - Folly (= 2018.10.22.00) + - RCTRequired (= 0.62.0) + - React-Core (= 0.62.0) + - React (0.62.0): + - React-Core (= 0.62.0) + - React-Core/DevSupport (= 0.62.0) + - React-Core/RCTWebSocket (= 0.62.0) + - React-RCTActionSheet (= 0.62.0) + - React-RCTAnimation (= 0.62.0) + - React-RCTBlob (= 0.62.0) + - React-RCTImage (= 0.62.0) + - React-RCTLinking (= 0.62.0) + - React-RCTNetwork (= 0.62.0) + - React-RCTSettings (= 0.62.0) + - React-RCTText (= 0.62.0) + - React-RCTVibration (= 0.62.0) + - React-Core (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default (= 0.62.0) + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/CoreModulesHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/Default (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/DevSupport (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default (= 0.62.0) + - React-Core/RCTWebSocket (= 0.62.0) + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - React-jsinspector (= 0.62.0) + - Yoga + - React-Core/RCTActionSheetHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTAnimationHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTBlobHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTImageHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTLinkingHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTNetworkHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTSettingsHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTTextHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTVibrationHeaders (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-Core/RCTWebSocket (0.62.0): + - Folly (= 2018.10.22.00) + - glog + - React-Core/Default (= 0.62.0) + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsiexecutor (= 0.62.0) + - Yoga + - React-CoreModules (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.0) + - React-Core/CoreModulesHeaders (= 0.62.0) + - React-RCTImage (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - React-cxxreact (0.62.0): + - boost-for-react-native (= 1.63.0) + - DoubleConversion + - Folly (= 2018.10.22.00) + - glog + - React-jsinspector (= 0.62.0) + - React-jsi (0.62.0): + - boost-for-react-native (= 1.63.0) + - DoubleConversion + - Folly (= 2018.10.22.00) + - glog + - React-jsi/Default (= 0.62.0) + - React-jsi/Default (0.62.0): + - boost-for-react-native (= 1.63.0) + - DoubleConversion + - Folly (= 2018.10.22.00) + - glog + - React-jsiexecutor (0.62.0): + - DoubleConversion + - Folly (= 2018.10.22.00) + - glog + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - React-jsinspector (0.62.0) + - react-native-safe-area-context (0.7.3): + - React + - React-RCTActionSheet (0.62.0): + - React-Core/RCTActionSheetHeaders (= 0.62.0) + - React-RCTAnimation (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.0) + - React-Core/RCTAnimationHeaders (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - React-RCTBlob (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - Folly (= 2018.10.22.00) + - React-Core/RCTBlobHeaders (= 0.62.0) + - React-Core/RCTWebSocket (= 0.62.0) + - React-jsi (= 0.62.0) + - React-RCTNetwork (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - React-RCTImage (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.0) + - React-Core/RCTImageHeaders (= 0.62.0) + - React-RCTNetwork (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - React-RCTLinking (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - React-Core/RCTLinkingHeaders (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - React-RCTNetwork (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.0) + - React-Core/RCTNetworkHeaders (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - React-RCTSettings (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - Folly (= 2018.10.22.00) + - RCTTypeSafety (= 0.62.0) + - React-Core/RCTSettingsHeaders (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - React-RCTText (0.62.0): + - React-Core/RCTTextHeaders (= 0.62.0) + - React-RCTVibration (0.62.0): + - FBReactNativeSpec (= 0.62.0) + - Folly (= 2018.10.22.00) + - React-Core/RCTVibrationHeaders (= 0.62.0) + - ReactCommon/turbomodule/core (= 0.62.0) + - ReactCommon/callinvoker (0.62.0): + - DoubleConversion + - Folly (= 2018.10.22.00) + - glog + - React-cxxreact (= 0.62.0) + - ReactCommon/turbomodule/core (0.62.0): + - DoubleConversion + - Folly (= 2018.10.22.00) + - glog + - React-Core (= 0.62.0) + - React-cxxreact (= 0.62.0) + - React-jsi (= 0.62.0) + - ReactCommon/callinvoker (= 0.62.0) + - RNCMaskedView (0.1.9): + - React + - RNGestureHandler (1.6.1): + - React + - RNReanimated (1.8.0): + - React + - RNScreens (2.5.0): + - React + - Yoga (1.14.0) + +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/Libraries/FBReactNativeSpec`) + - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`) + - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`) + - RCTRequired (from `../node_modules/react-native/Libraries/RCTRequired`) + - RCTTypeSafety (from `../node_modules/react-native/Libraries/TypeSafety`) + - React (from `../node_modules/react-native/`) + - React-Core (from `../node_modules/react-native/`) + - React-Core/DevSupport (from `../node_modules/react-native/`) + - React-Core/RCTWebSocket (from `../node_modules/react-native/`) + - React-CoreModules (from `../node_modules/react-native/React/CoreModules`) + - React-cxxreact (from `../node_modules/react-native/ReactCommon/cxxreact`) + - React-jsi (from `../node_modules/react-native/ReactCommon/jsi`) + - React-jsiexecutor (from `../node_modules/react-native/ReactCommon/jsiexecutor`) + - React-jsinspector (from `../node_modules/react-native/ReactCommon/jsinspector`) + - react-native-safe-area-context (from `../node_modules/react-native-safe-area-context`) + - React-RCTActionSheet (from `../node_modules/react-native/Libraries/ActionSheetIOS`) + - React-RCTAnimation (from `../node_modules/react-native/Libraries/NativeAnimation`) + - 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`) + - React-RCTNetwork (from `../node_modules/react-native/Libraries/Network`) + - React-RCTSettings (from `../node_modules/react-native/Libraries/Settings`) + - React-RCTText (from `../node_modules/react-native/Libraries/Text`) + - React-RCTVibration (from `../node_modules/react-native/Libraries/Vibration`) + - ReactCommon/callinvoker (from `../node_modules/react-native/ReactCommon`) + - ReactCommon/turbomodule/core (from `../node_modules/react-native/ReactCommon`) + - "RNCMaskedView (from `../node_modules/@react-native-community/masked-view`)" + - RNGestureHandler (from `../node_modules/react-native-gesture-handler`) + - RNReanimated (from `../node_modules/react-native-reanimated`) + - RNScreens (from `../node_modules/react-native-screens`) + - Yoga (from `../node_modules/react-native/ReactCommon/yoga`) + +SPEC REPOS: + trunk: + - boost-for-react-native + +EXTERNAL SOURCES: + DoubleConversion: + :podspec: "../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec" + FBLazyVector: + :path: "../node_modules/react-native/Libraries/FBLazyVector" + FBReactNativeSpec: + :path: "../node_modules/react-native/Libraries/FBReactNativeSpec" + Folly: + :podspec: "../node_modules/react-native/third-party-podspecs/Folly.podspec" + glog: + :podspec: "../node_modules/react-native/third-party-podspecs/glog.podspec" + RCTRequired: + :path: "../node_modules/react-native/Libraries/RCTRequired" + RCTTypeSafety: + :path: "../node_modules/react-native/Libraries/TypeSafety" + React: + :path: "../node_modules/react-native/" + React-Core: + :path: "../node_modules/react-native/" + React-CoreModules: + :path: "../node_modules/react-native/React/CoreModules" + React-cxxreact: + :path: "../node_modules/react-native/ReactCommon/cxxreact" + React-jsi: + :path: "../node_modules/react-native/ReactCommon/jsi" + React-jsiexecutor: + :path: "../node_modules/react-native/ReactCommon/jsiexecutor" + React-jsinspector: + :path: "../node_modules/react-native/ReactCommon/jsinspector" + react-native-safe-area-context: + :path: "../node_modules/react-native-safe-area-context" + React-RCTActionSheet: + :path: "../node_modules/react-native/Libraries/ActionSheetIOS" + React-RCTAnimation: + :path: "../node_modules/react-native/Libraries/NativeAnimation" + React-RCTBlob: + :path: "../node_modules/react-native/Libraries/Blob" + React-RCTImage: + :path: "../node_modules/react-native/Libraries/Image" + React-RCTLinking: + :path: "../node_modules/react-native/Libraries/LinkingIOS" + React-RCTNetwork: + :path: "../node_modules/react-native/Libraries/Network" + React-RCTSettings: + :path: "../node_modules/react-native/Libraries/Settings" + React-RCTText: + :path: "../node_modules/react-native/Libraries/Text" + React-RCTVibration: + :path: "../node_modules/react-native/Libraries/Vibration" + ReactCommon: + :path: "../node_modules/react-native/ReactCommon" + RNCMaskedView: + :path: "../node_modules/@react-native-community/masked-view" + RNGestureHandler: + :path: "../node_modules/react-native-gesture-handler" + RNReanimated: + :path: "../node_modules/react-native-reanimated" + RNScreens: + :path: "../node_modules/react-native-screens" + Yoga: + :path: "../node_modules/react-native/ReactCommon/yoga" + +SPEC CHECKSUMS: + boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c + DoubleConversion: 5805e889d232975c086db112ece9ed034df7a0b2 + FBLazyVector: 545eccf4f6ef2de8fd450fd8a1edb3f913c7371a + FBReactNativeSpec: 85c7f8347f4a6e911742228e89e245187afa298e + Folly: 30e7936e1c45c08d884aa59369ed951a8e68cf51 + glog: 1f3da668190260b06b429bb211bfbee5cd790c28 + RCTRequired: 0873f5bdb1762d2b9b1ae16a01c4f91d6ee3b6dd + RCTTypeSafety: a605e0cc0e4220f6e65896bd9e675073c2978f35 + React: 8abf6bdd2b05538e9445f7bbda800df744068bfe + React-Core: d6daa0d60a4180915e889a5e81f28522cb30359a + React-CoreModules: 9d5343b095a52e830954a1dd7ae1cb9321ceeddc + React-cxxreact: c108ca236585b9c802f1eeab11fed1a023faac3a + React-jsi: bc8166d6833cdcb0848c80710b26ce63fad2c099 + React-jsiexecutor: 8bf0b2707f05865113415088c398a7f98c0cf546 + React-jsinspector: 8e5913c4c6c54f0d3f9c9fc630c465a89cded65d + react-native-safe-area-context: e200d4433aba6b7e60b52da5f37af11f7a0b0392 + React-RCTActionSheet: 674afbc8b9c76e0a83520e0a51da29a70802c03f + React-RCTAnimation: f5f24330d09ee677fb49e0782f8321868f4df431 + React-RCTBlob: b773ce6138ab0d172ebd8a455fd4efd200a92549 + React-RCTImage: 8dbaa77916f9d21ff8faa0f3f5f06d4069c28e93 + React-RCTLinking: 312a2b3511e2829e68c300c2cdcae4282fefc7ef + React-RCTNetwork: 4b87acf29c38b8819bea67dad3edeca7b9a20718 + React-RCTSettings: be798c8b33392a90d9d551644610ffa349a89255 + React-RCTText: 91a0d0ae5434aa28fe0c89c03eb9d660ff53bd9b + React-RCTVibration: 0630aeb11e22f87c180ca9c0c3a0a0aba780cc62 + ReactCommon: d22162ab8f1358c53dfcd0f9c4d82d38facdbc48 + RNCMaskedView: 71fc32d971f03b7f03d6ab6b86b730c4ee64f5b6 + RNGestureHandler: 8f09cd560f8d533eb36da5a6c5a843af9f056b38 + RNReanimated: 955cf4068714003d2f1a6e2bae3fb1118f359aff + RNScreens: ac02d0e4529f08ced69f5580d416f968a6ec3a1d + Yoga: 9db9ff2025ad21d1ac0a8b3c85d5ac4e7c29d525 + +PODFILE CHECKSUM: 3221748711f0d0b6b603a2f637b90e6c26f3f540 + +COCOAPODS: 1.8.4