Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files

Upgrade react native to 0.56 and react to 16.6.3

  • Loading branch information
Khaled Tantawy authored and mahmoud-adam85 committed Dec 10, 2018
1 parent 1bf9171 commit 8293d312d7d78b34b54fe146a1577c6beecc1a37
Showing with 6,323 additions and 5,759 deletions.
  1. +8 −0 Client.xcodeproj/project.pbxproj
  2. +10 −7 Podfile
  3. +4 −0 azure-pipelines.yml
  4. +6,295 −5,748 package-lock.json
  5. +6 −4 package.json
@@ -5735,6 +5735,8 @@
"${BUILT_PRODUCTS_DIR}/BoringSSL-GRPC/openssl_grpc.framework",
"${BUILT_PRODUCTS_DIR}/CRToast/CRToast.framework",
"${BUILT_PRODUCTS_DIR}/Charts/Charts.framework",
"${BUILT_PRODUCTS_DIR}/DoubleConversion/DoubleConversion.framework",
"${BUILT_PRODUCTS_DIR}/Folly/folly.framework",
"${BUILT_PRODUCTS_DIR}/KKDomain/KKDomain.framework",
"${BUILT_PRODUCTS_DIR}/Protobuf/Protobuf.framework",
"${BUILT_PRODUCTS_DIR}/RNDeviceInfo/RNDeviceInfo.framework",
@@ -5744,12 +5746,14 @@
"${BUILT_PRODUCTS_DIR}/React/React.framework",
"${BUILT_PRODUCTS_DIR}/Realm-iOS11.0/Realm.framework",
"${BUILT_PRODUCTS_DIR}/RealmSwift-iOS11.0/RealmSwift.framework",
"${BUILT_PRODUCTS_DIR}/RxAtomic/RxAtomic.framework",
"${BUILT_PRODUCTS_DIR}/RxSwift/RxSwift.framework",
"${BUILT_PRODUCTS_DIR}/SVProgressHUD/SVProgressHUD.framework",
"${BUILT_PRODUCTS_DIR}/gRPC/GRPCClient.framework",
"${BUILT_PRODUCTS_DIR}/gRPC-Core/grpc.framework",
"${BUILT_PRODUCTS_DIR}/gRPC-ProtoRPC/ProtoRPC.framework",
"${BUILT_PRODUCTS_DIR}/gRPC-RxLibrary/RxLibrary.framework",
"${BUILT_PRODUCTS_DIR}/glog/glog.framework",
"${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework",
"${PODS_ROOT}/../node_modules/react-native-webrtc/ios/WebRTC.framework",
"${BUILT_PRODUCTS_DIR}/react-native-webrtc/react_native_webrtc.framework",
@@ -5765,6 +5769,8 @@
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/openssl_grpc.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/CRToast.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Charts.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DoubleConversion.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/folly.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/KKDomain.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Protobuf.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RNDeviceInfo.framework",
@@ -5774,12 +5780,14 @@
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/React.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Realm.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RealmSwift.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxAtomic.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwift.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SVProgressHUD.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GRPCClient.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/grpc.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ProtoRPC.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxLibrary.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/glog.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/WebRTC.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/react_native_webrtc.framework",
17 Podfile
@@ -5,15 +5,18 @@ use_frameworks!
def project_pods
react_path = './node_modules/react-native'
yoga_path = File.join(react_path, 'ReactCommon/yoga')
folly_path = File.join(react_path, 'third-party-podspecs/Folly.podspec')

pod 'Folly', :podspec => folly_path
pod 'React', :path => './node_modules/react-native', :subspecs => [
'Core',
'DevSupport',
'BatchedBridge',
'CxxBridge',
'RCTText',
'RCTNetwork',
'RCTWebSocket',
'RCTImage',
'RCTAnimation',
]
pod 'yoga', :path => yoga_path
pod 'RNFS', :path => './node_modules/react-native-fs'
@@ -28,12 +31,12 @@ end
target 'Client' do
project_pods
pod 'BondAPI', :path => '.'
pod 'KKDomain', :git => 'https://github.com/kejinlu/KKDomain.git'
pod 'AWSCore', '~> 2.6'
pod 'AWSSNS', '~> 2.6'
pod 'RxSwift', '~> 4.0'
pod 'RealmSwift', '~> 3.7.0'
pod 'Charts', '~> 3.0.1'
pod 'KKDomain', :git => 'https://github.com/kejinlu/KKDomain.git'
pod 'AWSCore', '~> 2.6'
pod 'AWSSNS', '~> 2.6'
pod 'RxSwift', '~> 4.0'
pod 'RealmSwift', '~> 3.7.0'
pod 'Charts', '~> 3.0.1'
end

target 'Storage' do
@@ -25,6 +25,10 @@ steps:
- script: $(which carthage) bootstrap --verbose --platform ios --color auto --cache-builds
displayName: 'carthage bootstrap'

- task: NodeTool@0
inputs:
versionSpec: '9.11.2'

- task: Npm@1
displayName: 'npm install'
inputs:

0 comments on commit 8293d31

Please sign in to comment.