-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDuckDuck.podspec
44 lines (32 loc) · 1.06 KB
/
DuckDuck.podspec
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
38
39
40
41
42
43
44
Pod::Spec.new do |spec|
# 项目名称
spec.name = "DuckDuck"
# 项目版本号
spec.version = "0.0.3"
# 项目介绍
spec.summary = "常用工具库"
# 项目详细描述(可以markdown)
spec.description = <<-DESC
- 这是一个日常开发工具库
DESC
# 项目主页
spec.homepage = "https://github.com/xxwang/DuckDuck"
# 项目许可证
spec.license = "MIT"
# 作者信息
spec.author = { "xxwang" => "[email protected]" }
# 平台及版本
spec.platform = :ios, "15.0"
spec.ios.deployment_target = '15.0'
# 需要arc
spec.requires_arc = true
#模块名称
spec.module_name = 'DuckDuck'
# 指定语言版本
spec.swift_version = '5'
# 项目源文件
spec.source = { :git => "https://github.com/xxwang/DuckDuck.git", :branch => 'main' }
# 文件目录
spec.source_files = 'Sources/DuckDuck/**/*.{c,h,m,swift}'
# spec.frameworks = 'UIKit', 'QuartzCore', 'Foundation', 'AVFAudio', 'CoreGraphics', 'CoreLocation', 'Dispatch', 'HealthKit', 'MapKit'
end