Skip to content

Commit

Permalink
[Add] DouYinHook (1.0.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
TodLorry committed Mar 15, 2018
1 parent 9785ff0 commit 915e4ec
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions DouYinHook/1.0.0/DouYinHook.podspec
@@ -0,0 +1,20 @@
Pod::Spec.new do |spec|
spec.name = "DouYinHook" #Pod的名字
spec.version = "1.0.0" #版本号
spec.summary = "DouYinApp Hook"
spec.description = <<-DESC #Pod的描述
- 比如去水印保存视频
DESC

spec.homepage = "https://github.com/TodLorry/DouYinHook" #Pod的地址

spec.license = { :type => "BSD", :file => "LICENSE" } #License
spec.author = { "AlbusSong" => "strawberry111111@163.com" } #作者
spec.social_media_url = "http://weibo.com/" #weibo
spec.platform = :ios, "8.0" #平台、版本
spec.source = { :git => "https://github.com/TodLorry/DouYinHook.git", :tag => spec.version.to_s } #代码的git地址以及tag
spec.source_files = "DouYinHook/**/*.{h,m}" #本地验证,表示当前目录以及子目录的所有h或m结尾的文件 如果发布到MonkeyPodSpecs需要填写git clone下来的对应的路径
spec.public_header_files = "DouYinHook/DouYinHook.h" #需要对外导出的头文件 此处为本地验证
spec.requires_arc = true #ARC
spec.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "NO", "HEADER_SEARCH_PATHS" => "/opt/MonkeyDev/include" } #这个必须有,不要修改
end

0 comments on commit 915e4ec

Please sign in to comment.