-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJSBridge.podspec
More file actions
22 lines (19 loc) · 937 Bytes
/
JSBridge.podspec
File metadata and controls
22 lines (19 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
Pod::Spec.new do |s|
s.name = "JSBridge"
s.version = "0.0.1"
s.summary = "A framework for simplifying communication between JavaScript and native Swift."
s.description = <<-DESC
JSBridge is a universal framework designed to simplify communication between JavaScript and client-side (OC, Swift). The framework provides powerful bidirectional communication mechanisms, supporting features like asynchronous calls, callback handling, and log management.
DESC
s.homepage = "https://github.com/JyHu/JSBridge"
s.license = "MIT"
s.authors = {
"JyHu" => "auu.aug@gmail.com",
}
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.source = { :git => "https://github.com/JyHu/JSBridge.git", :tag => s.version }
s.requires_arc = true
s.source_files = 'Sources/JSBridge/*.swift'
s.resources = 'Sources/JSBridge/Resources/bridge.js'
end