Files
SideStore/Podfile
Riley Testut 07efd681c1 [AltServer] Refactors Mail plug-in installation to fix notarization errors
AltServer must now download the Mail plug-in at runtime, because notarization will fail if AltServer contains an unsigned binary (and as of Catalina, Mail plug-ins only work if they’re unsigned)
2020-02-13 21:49:46 -08:00

33 lines
686 B
Ruby

inhibit_all_warnings!
target 'AltStore' do
platform :ios, '12.0'
use_modular_headers!
# Pods for AltStore
pod 'KeychainAccess', '~> 3.2.0'
pod 'Nuke', '~> 7.0'
pod 'AltSign', :path => 'Dependencies/AltSign'
pod 'Roxas', :path => 'Dependencies/Roxas'
end
target 'AltServer' do
platform :macos, '10.14'
use_frameworks!
# Pods for AltServer
pod 'STPrivilegedTask', :git => 'https://github.com/rileytestut/STPrivilegedTask.git'
pod 'Sparkle'
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
end