Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
fix podfile (2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrower95 committed Jul 25, 2023
1 parent 5aa1f34 commit 5c21c54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions WaasSdk.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5c21c54

Please sign in to comment.