forked from OutSystems/OSInAppBrowserLib-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OSInAppBrowserLib.podspec
29 lines (23 loc) · 1.46 KB
/
OSInAppBrowserLib.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
26
27
28
29
Pod::Spec.new do |spec|
spec.name = 'OSInAppBrowserLib'
spec.version = '0.1.0'
spec.summary = 'The `OSInAppBrowserLib` is a library that provides a web browser view to load a web page within a Mobile Application.'
spec.description = <<-DESC
The InAppBrowserLib library behaves as a standard web browser and is useful to load untrusted content without risking your application's security.
The `OSIABEngine` structure provides the main features of the Library, which are 3 different ways to open a URL:
- using an External Browser;
- using a System Browser;
- using a Web View.
the library provides the following features:
- Open a URL in an External Browser.
- Open a URL in a System Browser.
- Open a URL in a Web View.
DESC
spec.homepage = 'https://github.com/OS-ricardomoreirasilva/OSInAppBrowserLib-iOS'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { 'OutSystems Mobile Ecosystem' => '[email protected]' }
spec.source = { :http => "https://github.com/OS-ricardomoreirasilva/OSInAppBrowserLib-iOS/releases/download/#{spec.version}/OSInAppBrowserLib.zip", :type => "zip" }
spec.vendored_frameworks = "OSInAppBrowserLib.xcframework"
spec.ios.deployment_target = '13.0'
spec.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9']
end