Files
SideStore/Podfile

37 lines
814 B
Plaintext
Raw Normal View History

inhibit_all_warnings!
2024-12-07 17:45:09 +05:30
target 'SideStore' do
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'
end
target 'AltStoreCore' do
platform :ios, '14.0'
use_frameworks!
2024-12-07 17:45:09 +05:30
# Pods for AltStoreCore
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'
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'
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '11.0'
end
end
2024-12-07 17:45:09 +05:30
end