Commit 6fb249b0238c44e6833a7cee9ff6add2e1d965b6

Authored by 梁星国
1 parent 95cdf5a6

提交0.0.8

Showing 1 changed file with 11 additions and 7 deletions
CNLiveUploadManager.podspec
... ... @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
16 16 #
17 17  
18 18 s.name = "CNLiveUploadManager" # 项目名称
19   - s.version = "0.0.7" # 版本号 与 你仓库的标签号 对应
  19 + s.version = "0.0.8" # 版本号 与 你仓库的标签号 对应
20 20 s.summary = "图片,视频上传" # 项目简介
21 21  
22 22 # This description is used to generate tags and improve search results.
... ... @@ -107,19 +107,23 @@ TODO:加入压缩测试
107 107  
108 108 # TODO: 静态库导入总是出问题
109 109 s.subspec "upload" do |ss|
110   - ss.source_files = "CNLiveUploadManager/Upload/CNLiveUploadManager.{h,m}"
111   - ss.public_header_files = "CNLiveUploadManager/Upload/CNLiveUploadManager.h"
112   - ss.frameworks = "UIKit", "Foundation"
  110 +
113 111 # 依赖类库
  112 + ss.dependency "CNLiveUploadManager/util"
  113 + ss.dependency "CNLiveUploadManager/ZipData"
  114 +
114 115 ss.dependency "AFNetworking", "~> 3.1.0"
115 116 ss.dependency "Qiniu", "~> 7.1"
116 117 # ss.dependency "PLShortVideoKit", "~> 1.13.1"
117 118 # ss.dependency "PLPlayerKit", "~> 3.3.3"
118 119  
119 120 # SDK依赖库
120   - s.static_framework = true
121   - s.vendored_frameworks = "CNLiveUploadManager/PLShortVideoSDK/PLShortVideoKit.framework"
122   - s.vendored_library = "CNLiveUploadManager/PLShortVideoSDK/libMuseProcessor.a"
  121 + #ss.static_framework = true
  122 + ss.vendored_frameworks = "CNLiveUploadManager/PLShortVideoSDK/PLShortVideoKit.framework"
  123 + ss.vendored_library = "CNLiveUploadManager/PLShortVideoSDK/libMuseProcessor.a"
  124 +
  125 + ss.public_header_files = "CNLiveUploadManager/Upload/CNLiveUploadManager.h"
  126 + ss.source_files = "CNLiveUploadManager/Upload/CNLiveUploadManager.{h,m}"
123 127  
124 128 end
125 129  
... ...