Skip to content

Commit 94fd0d1

Browse files
committed
feat: add OSInAppBrowserLib-iOS dependency
1 parent c618fff commit 94fd0d1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Package.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,23 @@ import PackageDescription
33

44
let package = Package(
55
name: "CapacitorInappbrowser",
6-
platforms: [.iOS(.v13)],
6+
platforms: [.iOS(.v14)],
77
products: [
88
.library(
99
name: "CapacitorInappbrowser",
1010
targets: ["InAppBrowserPlugin"])
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "main")
13+
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "main"),
14+
.package(url: "https://github.com/OutSystems/OSInAppBrowserLib-iOS.git", from: "2.2.0")
1415
],
1516
targets: [
1617
.target(
1718
name: "InAppBrowserPlugin",
1819
dependencies: [
1920
.product(name: "Capacitor", package: "capacitor-swift-pm"),
20-
.product(name: "Cordova", package: "capacitor-swift-pm")
21+
.product(name: "Cordova", package: "capacitor-swift-pm"),
22+
.product(name: "OSInAppBrowserLib", package: "OSInAppBrowserLib-iOS")
2123
],
2224
path: "ios/Sources/InAppBrowserPlugin"),
2325
.testTarget(

0 commit comments

Comments
 (0)