forked from olcxjas-softworks/LarpixClient
Add back gesture support
This commit is contained in:
parent
3b2d474f3d
commit
38f8c147ae
1250 changed files with 39332 additions and 21 deletions
28
node_modules/@capacitor/app/Package.swift
generated
vendored
Normal file
28
node_modules/@capacitor/app/Package.swift
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
// 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")
|
||||
]
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue