-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWebViewBridge.Swift.podspec
More file actions
32 lines (22 loc) · 1.21 KB
/
WebViewBridge.Swift.podspec
File metadata and controls
32 lines (22 loc) · 1.21 KB
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
31
32
# pod spec lint WebViewBridge.Swift.podspec --allow-warnings
# pod trunk push WebViewBridge.Swift.podspec --allow-warnings
Pod::Spec.new do |s|
s.name = "WebViewBridge.Swift"
s.version = "1.2"
s.summary = "A bridge for WebView(UIWebView, WKWebView), using JavaScriptCore, handles messages between native(Swift) and js"
s.description = <<-DESC
A bridge for WebView(UIWebView, WKWebView), using JavaScriptCore, handles messages between native(Swift) and js
DESC
s.homepage = "https://github.com/zhangbozhb/WebViewBridge.Swift"
s.screenshots = "https://github.com/zhangbozhb/WebViewBridge.Swift/blob/master/screenshots_1.gif"
s.license = { :type => "MIT"}
s.author = { "travel" => "zhangbozhb@gmail.com" }
s.social_media_url = "http://twitter.com/travel_zh"
s.ios.deployment_target = "8.0"
# s.watchos.deployment_target = "2.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/zhangbozhb/WebViewBridge.Swift.git", :tag => s.version }
s.source_files = ["Sources/*.swift", "Sources/*.js"]
s.exclude_files = "Sources/Exclude"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '3.0' }
end