LarpixClient/node_modules/@capacitor/app/Package.swift
olcxja 38f8c147ae
All checks were successful
Android Build / publish (push) Successful in 47s
Linux Build / publish (push) Successful in 51s
Add back gesture support
2026-05-17 21:46:12 +02:00

28 lines
815 B
Swift

// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "CapacitorApp",
platforms: [.iOS(.v15)],
products: [
.library(
name: "CapacitorApp",
targets: ["AppPlugin"])
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "8.0.0")
],
targets: [
.target(
name: "AppPlugin",
dependencies: [
.product(name: "Capacitor", package: "capacitor-swift-pm"),
.product(name: "Cordova", package: "capacitor-swift-pm")
],
path: "ios/Sources/AppPlugin"),
.testTarget(
name: "AppPluginTests",
dependencies: ["AppPlugin"],
path: "ios/Tests/AppPluginTests")
]
)