2023-03-01 15:00:27 -06:00
|
|
|
inhibit_all_warnings!
|
|
|
|
|
|
2024-12-07 17:45:09 +05:30
|
|
|
target 'SideStore' do
|
2023-03-01 15:00:27 -06:00
|
|
|
platform :ios, '14.0'
|
|
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
|
|
|
|
# Pods for AltStore
|
|
|
|
|
pod 'Nuke', '~> 10.0'
|
|
|
|
|
pod 'AppCenter', '~> 5.0'
|
2024-12-07 17:45:09 +05:30
|
|
|
pod 'Starscream', '~> 4.0.0'
|
2023-03-01 15:00:27 -06:00
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
target 'AltStoreCore' do
|
|
|
|
|
platform :ios, '14.0'
|
|
|
|
|
|
|
|
|
|
use_frameworks!
|
|
|
|
|
|
2024-12-07 17:45:09 +05:30
|
|
|
# Pods for AltStoreCore
|
2024-12-13 02:51:32 +05:30
|
|
|
pod 'KeychainAccess', '~> 4.2.2'
|
2024-12-07 17:45:09 +05:30
|
|
|
# pod 'SemanticVersion', '~> 0.3.5'
|
|
|
|
|
# Add the Swift Package using the repository URL
|
|
|
|
|
# pod 'SemanticVersion', :git => 'https://github.com/SwiftPackageIndex/SemanticVersion.git', :tag => '0.4.0'
|
|
|
|
|
|
2023-03-01 15:00:27 -06: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'] = '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
|
2024-12-07 17:45:09 +05:30
|
|
|
end
|