2023-03-01 15:00:27 -06:00
|
|
|
inhibit_all_warnings!
|
|
|
|
|
|
|
|
|
|
target 'AltStore' do
|
|
|
|
|
platform :ios, '14.0'
|
|
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# Pods for AltStore
|
|
|
|
|
pod 'Nuke', '~> 10.0'
|
|
|
|
|
pod 'AppCenter', '~> 5.0'
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target 'AltServer' do
|
|
|
|
|
platform :macos, '11'
|
|
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# Pods for AltServer
|
|
|
|
|
pod 'STPrivilegedTask', :git => 'https://github.com/rileytestut/STPrivilegedTask.git'
|
|
|
|
|
pod 'Sparkle', '~> 2.3'
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target 'AltStoreCore' do
|
|
|
|
|
platform :ios, '14.0'
|
|
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# Pods for AltServer
|
|
|
|
|
pod 'KeychainAccess', '~> 4.2.0'
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
post_install do |installer|
|
|
|
|
|
installer.pods_project.targets.each do |target|
|
|
|
|
|
target.build_configurations.each do |config|
|
|
|
|
|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
|
2023-09-08 14:38:35 -05:00
|
|
|
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '11.0'
|
2023-03-01 15:00:27 -06:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|