2019-06-04 18:29:50 -07:00
|
|
|
inhibit_all_warnings!
|
|
|
|
|
|
|
|
|
|
target 'AltStore' do
|
|
|
|
|
platform :ios, '12.0'
|
|
|
|
|
|
2020-01-29 12:06:26 -08:00
|
|
|
use_modular_headers!
|
2019-06-04 18:29:50 -07:00
|
|
|
|
|
|
|
|
# Pods for AltStore
|
|
|
|
|
pod 'KeychainAccess', '~> 3.2.0'
|
2019-08-20 19:06:03 -05:00
|
|
|
pod 'Nuke', '~> 7.0'
|
2020-01-29 12:06:26 -08:00
|
|
|
pod 'AltSign', :path => 'Dependencies/AltSign'
|
|
|
|
|
pod 'Roxas', :path => 'Dependencies/Roxas'
|
2019-06-04 18:29:50 -07:00
|
|
|
|
|
|
|
|
end
|
2019-11-18 14:42:38 -08:00
|
|
|
|
|
|
|
|
target 'AltServer' do
|
|
|
|
|
platform :macos, '10.14'
|
|
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# Pods for AltServer
|
|
|
|
|
pod 'STPrivilegedTask'
|
2019-11-18 15:42:10 -08:00
|
|
|
pod 'Sparkle'
|
2019-11-18 14:42:38 -08:00
|
|
|
|
2020-01-29 12:06:26 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
|
target.build_configurations.each do |config|
|
|
|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.2'
|
|
|
|
|
end
|
|
|
|
|
end
|
2019-11-18 14:42:38 -08:00
|
|
|
end
|