-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathAYTikTokPod.podspec
executable file
·23 lines (21 loc) · 1.58 KB
/
AYTikTokPod.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "AYTikTokPod" #Pod的名字
spec.version = "1.2.1" #版本号
spec.summary = "A pod for TikTok"
spec.description = <<-DESC #Pod的描述
- TikTok 多地区版本/移除水印/移除下载限制
DESC
spec.homepage = "https://github.com/AloneMonkey/MonkeyDevPod" #Pod的地址
spec.license = { :type => "BSD", :file => "LICENSE" } #License
spec.author = { "AYJk" => "[email protected]" } #作者
spec.social_media_url = "https://github.com/AYJk" #github
spec.platform = :ios, "8.0" #平台、版本
spec.source = { :git => "https://github.com/AYJk/AYTikTokPod.git", :tag => spec.version.to_s } #代码的git地址以及tag
spec.source_files = "AYTikTokPod/**/*.{h,m}" #本地验证,表示当前目录以及子目录的所有h或m结尾的文件 如果发布到MonkeyPodSpecs需要填写git clone下来的对应的路径
spec.public_header_files = "AYTikTokPod/AYTikTokPod.h" #需要对外导出的头文件 此处为本地验证
spec.resource_bundles = {
"AYTikTokPod" => ["AYTikTokPod/Resources/*.plist"]
}
spec.requires_arc = true #ARC
spec.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "NO", "HEADER_SEARCH_PATHS" => "/opt/MonkeyDev/include" } #这个必须有,不要修改
end