-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreact-native-dlna.podspec
More file actions
31 lines (26 loc) · 1020 Bytes
/
react-native-dlna.podspec
File metadata and controls
31 lines (26 loc) · 1020 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
28
29
30
# react-native-dlna.podspec
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-dlna"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
react-native-dlna
DESC
s.homepage = "https://github.com/472647301/react-native-dlna"
# brief license entry:
s.license = "MIT"
# optional - use expanded license entry instead:
# s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "秃尾巴的猫" => "472647301@qq.com" }
s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/472647301/react-native-dlna.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,c,cc,cpp,m,mm,swift}"
s.requires_arc = true
s.vendored_frameworks = 'Neptune.framework', 'Platinum.framework'
# s.vendored_libraries = "ios/*.a"
s.dependency "React"
# ...
# s.dependency "..."
end