-
Notifications
You must be signed in to change notification settings - Fork 957
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update dependencies and actually port example to RN60
The previous update to react-native 0.60.x was incomplete this fixes it This also updates all the dependencies to versions that don't have security vulnerabilities so I will stop getting mail from github about it
- Loading branch information
Showing
15 changed files
with
2,293 additions
and
2,001 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
platform :ios, '9.0' | ||
require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' | ||
|
||
target 'example' do | ||
# Pods for example | ||
pod 'React', :path => '../node_modules/react-native/' | ||
pod 'React-Core', :path => '../node_modules/react-native/React' | ||
pod 'React-DevSupport', :path => '../node_modules/react-native/React' | ||
pod 'React-RCTActionSheet', :path => '../node_modules/react-native/Libraries/ActionSheetIOS' | ||
pod 'React-RCTAnimation', :path => '../node_modules/react-native/Libraries/NativeAnimation' | ||
pod 'React-RCTBlob', :path => '../node_modules/react-native/Libraries/Blob' | ||
pod 'React-RCTImage', :path => '../node_modules/react-native/Libraries/Image' | ||
pod 'React-RCTLinking', :path => '../node_modules/react-native/Libraries/LinkingIOS' | ||
pod 'React-RCTNetwork', :path => '../node_modules/react-native/Libraries/Network' | ||
pod 'React-RCTSettings', :path => '../node_modules/react-native/Libraries/Settings' | ||
pod 'React-RCTText', :path => '../node_modules/react-native/Libraries/Text' | ||
pod 'React-RCTVibration', :path => '../node_modules/react-native/Libraries/Vibration' | ||
pod 'React-RCTWebSocket', :path => '../node_modules/react-native/Libraries/WebSocket' | ||
|
||
pod 'React-cxxreact', :path => '../node_modules/react-native/ReactCommon/cxxreact' | ||
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 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga' | ||
|
||
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec' | ||
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec' | ||
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec' | ||
|
||
target 'exampleTests' do | ||
inherit! :search_paths | ||
# Pods for testing | ||
end | ||
|
||
use_native_modules! | ||
end | ||
|
||
target 'example-tvOS' do | ||
# Pods for example-tvOS | ||
|
||
target 'example-tvOSTests' do | ||
inherit! :search_paths | ||
# Pods for testing | ||
end | ||
|
||
end |
Oops, something went wrong.