-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRNUtil.podspec
More file actions
28 lines (22 loc) · 836 Bytes
/
RNUtil.podspec
File metadata and controls
28 lines (22 loc) · 836 Bytes
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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNUtil"
s.version = package["version"]
s.summary = package['description']
s.author = package['author']
s.homepage = package['homepage']
s.license = package['license']
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "author" => "zhangzy@5ichong.cn" }
s.platform = :ios, "11.0"
s.source = { :git => "https://github.com/author/RNUtil.git", :tag => "master" }
s.source_files = "ios/**/*"
s.requires_arc = true
s.swift_version = '5.0'
s.dependency "React"
s.dependency 'Qiniu', '~> 7.1'
s.dependency 'TZImagePickerController', '~> 3.3.1'
s.dependency "SDWebImage"
s.dependency 'JXPhotoBrowser'
end