diff --git a/WaasSdk.podspec b/WaasSdk.podspec index d13f933..8620766 100644 --- a/WaasSdk.podspec +++ b/WaasSdk.podspec @@ -1,17 +1,15 @@ require "json" -VERSION = "0.0.1" - Pod::Spec.new do |s| s.name = "WaasSdk" - s.version = "#{VERSION}" + s.version = "0.0.1" s.summary = "A native swift SDK for Coinbase's Wallet-as-a-service." s.homepage = "https://github.com/coinbase/waas-sdk-react-native" s.license = "Apache-2.0" s.authors = "Coinbase, Inc." s.platforms = { :ios => "13.0" } - s.source = { :git => "https://github.com/coinbase/waas-sdk-react-native.git", :tag => "swift/#{VERSION}" } + s.source = { :git => "https://github.com/coinbase/waas-sdk-react-native.git", :tag => "swift/#{s.version}" } s.source_files = "ios/swift/WaasSdk/*.{h,m,mm,swift}" s.vendored_frameworks = 'ios/swift/WaasSdkGo.xcframework', 'ios/swift/openssl_libcrypto.xcframework' diff --git a/example/ios/Podfile b/example/ios/Podfile index bcc040c..a64b3d8 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -61,7 +61,7 @@ target 'WaasSdkReactNativeExample' do # This issue happens after upgrading to Xcode 14.3. installer.pods_project.targets.each do |target| target.build_configurations.each do |config| - config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.4' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0' end end __apply_Xcode_12_5_M1_post_install_workaround(installer)