mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
AltDaemon allows AltStore to install and refresh apps without a computer on jailbroken devices. AltDaemon has the necessary entitlements to perform the same actions AltServer normally does over WiFi, and uses the same AltServer request logic to handle local requests.
45 lines
910 B
Ruby
45 lines
910 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 'AppCenter', '~> 3.1.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
|
|
|
|
target 'AltDaemon' do
|
|
platform :ios, '12.0'
|
|
|
|
use_modular_headers!
|
|
|
|
# Pods for AltDaemon
|
|
pod 'AltSign', :path => 'Dependencies/AltSign'
|
|
pod 'Roxas', :path => 'Dependencies/Roxas'
|
|
|
|
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 |