-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPodfile
34 lines (31 loc) · 1.06 KB
/
Podfile
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
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
post_install do |installer|
# 获取Pods项目中的目标数组(targets)然后遍历目targets
installer.pods_project.targets.each do |target|
# 通过目标对象(target)获取构建配置数组 (build_configurations)遍历构建配置数组
target.build_configurations.each do |config|
# 修改构建配置对象中的构建设置 (build_settings),将iOS 部署目标版本设为 13.0
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = '13.0'
end
end
end
source 'https://github.com/CocoaPods/Specs.git'
target 'ArtReader' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for ArtReader
pod 'SSZipArchive'
pod 'SwiftSoup'
pod 'LAWebView', '~> 0.1.0'
pod 'SnapKit', '~> 5.0.0'
pod 'DTCoreText'
pod 'Down'
target 'ArtReaderTests' do
inherit! :search_paths
# Pods for testing
end
target 'ArtReaderUITests' do
# Pods for testing
end
end