Files
sodalive-ios/Podfile
Yu Sung d271f3624b fix: BootpayUI 4.4.10으로 업데이트
- 에러로 인해 빌드되지 않던 문제 수정
2025-09-23 13:26:10 +09:00

32 lines
740 B
Ruby

# Uncomment the next line to define a global platform for your project
platform :ios, '16.6'
target 'SodaLive' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SodaLive
pod 'BootpayUI', '4.4.10'
end
target 'SodaLive-dev' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for SodaLive-dev
pod 'BootpayUI', '4.4.10'
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.6'
end
end
end
end