From 095cf6528dd005781b2d2bc9aa65b4bef11ef3c2 Mon Sep 17 00:00:00 2001 From: Ebubekir Sezer Date: Mon, 2 Jan 2023 23:54:41 +0300 Subject: [PATCH] Fix: podspec and tutorial1 Podfile version updated --- RIBs.podspec | 4 ++-- ios/tutorials/tutorial1/Podfile | 16 ++++++++++------ 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/RIBs.podspec b/RIBs.podspec index 6659224e7..b0c845c90 100644 --- a/RIBs.podspec +++ b/RIBs.podspec @@ -11,6 +11,6 @@ RIBs is the cross-platform architecture behind many mobile apps at Uber. This ar s.source = { :git => 'https://github.com/uber/RIBs.git', :tag => 'v' + s.version.to_s } s.ios.deployment_target = '9.0' s.source_files = 'ios/RIBs/Classes/**/*' - s.dependency 'RxSwift', '~> 6.0.0' - s.dependency 'RxRelay', '~> 6.0.0' + s.dependency 'RxSwift', '~> 6.5.0' + s.dependency 'RxRelay', '~> 6.5.0' end diff --git a/ios/tutorials/tutorial1/Podfile b/ios/tutorials/tutorial1/Podfile index 980817e94..970b31519 100644 --- a/ios/tutorials/tutorial1/Podfile +++ b/ios/tutorials/tutorial1/Podfile @@ -1,10 +1,14 @@ -platform :ios, '9.0' - -use_frameworks! -inhibit_all_warnings! +# Uncomment the next line to define a global platform for your project +# platform :ios, '9.0' target 'TicTacToe' do + # Comment the next line if you don't want to use dynamic frameworks + use_frameworks! + inhibit_all_warnings! + + # Pods for TicTacToe pod 'RIBs', :path => '../../../' pod 'SnapKit', '~> 4.0.0' - pod 'RxCocoa', '~> 5.1' -end + pod 'RxCocoa', '~> 6.5' + +end \ No newline at end of file