forked from vijeeshin/rn-native-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-native-mqtt.podspec
More file actions
27 lines (22 loc) · 937 Bytes
/
react-native-native-mqtt.podspec
File metadata and controls
27 lines (22 loc) · 937 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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-native-mqtt"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
An MQTT client or React Native that actually works with a simple Javascript interface
DESC
s.homepage = "https://github.com/davesters/rn-native-mqtt"
s.license = "MIT"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.authors = { "David Corona" => "yourname@email.com" }
s.platform = :ios, "13.0"
s.source = { :git => "https://github.com/davesters/rn-native-mqtt.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
s.framework = "Foundation"
s.dependency "React"
s.dependency "CocoaAsyncSocket"
s.dependency "Starscream", "~> 3.0.6"
end