delete unused podfiles

Signed-off-by: Joseph Mattello <mail@joemattiello.com>
This commit is contained in:
Joseph Mattello
2022-06-07 05:05:01 -04:00
parent 042da53b54
commit 0feae8402e
2 changed files with 0 additions and 88 deletions

41
Podfile
View File

@@ -1,41 +0,0 @@
inhibit_all_warnings!
target 'AltStore' do
platform :ios, '12.0'
use_frameworks!
# Pods for AltStore
pod 'Nuke', '~> 7.0'
pod 'AppCenter', '~> 4.2.0'
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 'AltStoreCore' do
platform :ios, '12.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'] = '12.2'
end
end
end