Skip to content

Commit

Permalink
added post install script to avoid pod warnings with deployment target
Browse files Browse the repository at this point in the history
  • Loading branch information
albertopeam committed Jan 17, 2023
1 parent db3e5c6 commit 3a4d9b9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Example/myWeb3Wallet/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,12 @@ pod 'web3swift', :git => 'https://github.com/veerChauhan/web3swift.git', :branch
end

end

# set iOS deployment target for every pod to avoid warnings
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '15.0'
end
end
end

0 comments on commit 3a4d9b9

Please sign in to comment.