forked from dfmuir/KINWebBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
KINWebBrowser.podspec
25 lines (19 loc) · 980 Bytes
/
KINWebBrowser.podspec
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
Pod::Spec.new do |s|
s.name = "KINWebBrowser"
s.version = "1.2.4"
s.summary = "A web browser module for your apps."
s.description = <<-DESC
KINWebBrowser is a web browser module for your apps. Powered by WKWebView on iOS 8. Backwards compatible with iOS 7 using UIWebView. KINWebBrowser offers the simplest way to add a web browser to your apps.
DESC
s.homepage = "https://github.com/dfmuir/KINWebBrowser"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "David F. Muir V" => "[email protected]" }
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/dfmuir/KINWebBrowser.git", :tag => s.version.to_s }
s.source_files = 'KINWebBrowser', 'KINWebBrowser/**/*.{h,m}'
s.resources = "Assets/*.png"
s.requires_arc = true
s.weak_framework = 'WebKit'
s.dependency 'TUSafariActivity', '1.0.2'
s.dependency 'ARChromeActivity', '1.0.2'
end