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,7 +16,7 @@ Pod::Spec.new do |s|
16 # 16 #
17 17
18 s.name = "CNLiveUploadManager" # 项目名称 18 s.name = "CNLiveUploadManager" # 项目名称
19 - s.version = "0.0.7" # 版本号 与 你仓库的标签号 对应 19 + s.version = "0.0.8" # 版本号 与 你仓库的标签号 对应
20 s.summary = "图片,视频上传" # 项目简介 20 s.summary = "图片,视频上传" # 项目简介
21 21
22 # This description is used to generate tags and improve search results. 22 # This description is used to generate tags and improve search results.
@@ -107,19 +107,23 @@ TODO:加入压缩测试 @@ -107,19 +107,23 @@ TODO:加入压缩测试
107 107
108 # TODO: 静态库导入总是出问题 108 # TODO: 静态库导入总是出问题
109 s.subspec "upload" do |ss| 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 ss.dependency "AFNetworking", "~> 3.1.0" 115 ss.dependency "AFNetworking", "~> 3.1.0"
115 ss.dependency "Qiniu", "~> 7.1" 116 ss.dependency "Qiniu", "~> 7.1"
116 # ss.dependency "PLShortVideoKit", "~> 1.13.1" 117 # ss.dependency "PLShortVideoKit", "~> 1.13.1"
117 # ss.dependency "PLPlayerKit", "~> 3.3.3" 118 # ss.dependency "PLPlayerKit", "~> 3.3.3"
118 119
119 # SDK依赖库 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 end 128 end
125 129