-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathPodfile
More file actions
35 lines (27 loc) · 994 Bytes
/
Podfile
File metadata and controls
35 lines (27 loc) · 994 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
source 'https://mirrors.tuna.tsinghua.edu.cn/git/CocoaPods/Specs.git'
# 也可以加上官方 CDN(可选)
# source 'https://cdn.cocoapods.org/'
platform :ios, '15.6'
target 'SwiftFastPass' do
use_frameworks!
# Pods for SwiftFastPass
# SnapKit 最新版本 5.7.1,官方推荐写法:~> 5.7
pod 'SnapKit', '~> 5.7' # :contentReference[oaicite:0]{index=0}
# MenuItemKit 最新版本 4.0.1,官方推荐:~> 4.0.0
pod 'MenuItemKit', '~> 4.0' # :contentReference[oaicite:1]{index=1}
# Eureka 最新版本 5.5.0,官方推荐:~> 5.5
pod 'Eureka', '~> 5.5' # :contentReference[oaicite:2]{index=2}
target 'SwiftFastPassTests' do
inherit! :search_paths
end
target 'SwiftFastPassUITests' do
inherit! :search_paths
end
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.6'
end
end
end