mirror of
https://github.com/SirBlobby/Hoya26.git
synced 2026-02-04 03:34:34 -05:00
22 lines
573 B
Ruby
22 lines
573 B
Ruby
# Uncomment the next line to define a global platform for your project
|
|
|
|
target 'ethix_iOS' do
|
|
platform :ios, '14.0'
|
|
# Pods for ethix_iOS
|
|
end
|
|
|
|
target 'ethix_macOS' do
|
|
platform :osx, '11.0'
|
|
# Pods for ethix_macOS
|
|
end
|
|
|
|
# Delete the deployment target for iOS and macOS, causing it to be inherited from the Podfile
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
|
|
config.build_settings.delete 'MACOSX_DEPLOYMENT_TARGET'
|
|
end
|
|
end
|
|
end
|