2019-06-04 18:29:50 -07:00
|
|
|
inhibit_all_warnings!
|
|
|
|
|
|
|
|
|
|
target 'AltStore' do
|
2023-03-01 15:00:27 -06:00
|
|
|
platform :ios, '14.0'
|
2019-06-04 18:29:50 -07:00
|
|
|
|
2020-09-03 16:39:08 -07:00
|
|
|
use_frameworks!
|
2019-06-04 18:29:50 -07:00
|
|
|
|
|
|
|
|
# Pods for AltStore
|
2023-03-01 15:00:27 -06:00
|
|
|
pod 'Nuke', '~> 10.0'
|
|
|
|
|
pod 'AppCenter', '~> 5.0'
|
2019-06-04 18:29:50 -07:00
|
|
|
|
|
|
|
|
end
|
2019-11-18 14:42:38 -08:00
|
|
|
|
|
|
|
|
target 'AltServer' do
|
2023-03-01 15:00:27 -06:00
|
|
|
platform :macos, '11'
|
2019-11-18 14:42:38 -08:00
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# Pods for AltServer
|
2020-02-13 21:41:31 -08:00
|
|
|
pod 'STPrivilegedTask', :git => 'https://github.com/rileytestut/STPrivilegedTask.git'
|
2023-03-01 15:00:27 -06:00
|
|
|
pod 'Sparkle', '~> 2.3'
|
2019-11-18 14:42:38 -08:00
|
|
|
|
2020-01-29 12:06:26 -08:00
|
|
|
end
|
|
|
|
|
|
2020-09-03 16:39:08 -07:00
|
|
|
target 'AltStoreCore' do
|
2023-03-01 15:00:27 -06:00
|
|
|
platform :ios, '14.0'
|
2020-09-03 16:39:08 -07:00
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# Pods for AltServer
|
2020-10-01 13:34:06 -07:00
|
|
|
pod 'KeychainAccess', '~> 4.2.0'
|
2020-09-03 16:39:08 -07:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
2020-01-29 12:06:26 -08:00
|
|
|
post_install do |installer|
|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
|
target.build_configurations.each do |config|
|
2023-03-01 15:00:27 -06:00
|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
|
2023-09-08 14:38:35 -05:00
|
|
|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '11.0'
|
2020-01-29 12:06:26 -08:00
|
|
|
end
|
|
|
|
|
end
|
2019-11-18 14:42:38 -08:00
|
|
|
end
|