forked from BDGHubNoKey/SideStore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
37 lines (27 loc) · 900 Bytes
/
Podfile
File metadata and controls
37 lines (27 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
inhibit_all_warnings!
target 'SideStore' do
platform :ios, '15.0'
use_frameworks! :linkage => :static
# Pods for AltStore
pod 'Nuke', '~> 10.0'
pod 'AppCenter/Analytics', '~> 5.0'
pod 'AppCenter/Crashes', '~> 5.0'
pod 'Starscream', '~> 4.0.0'
end
target 'AltStoreCore' do
platform :ios, '15.0'
use_frameworks! :linkage => :static
# Pods for AltStoreCore
pod 'KeychainAccess', '~> 4.2.2'
# 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'] = '15.0'
config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '11.0'
end
end
end