This commit is contained in:
metacryst
2026-01-09 11:14:27 -06:00
parent cf03c95664
commit 637c9e4674
2149 changed files with 527743 additions and 0 deletions

34
node_modules/@capacitor/geolocation/Package.swift generated vendored Normal file
View File

@@ -0,0 +1,34 @@
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "CapacitorGeolocation",
platforms: [.iOS(.v14)],
products: [
.library(
name: "CapacitorGeolocation",
targets: ["GeolocationPlugin"])
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0")
],
targets: [
.binaryTarget(
name: "IONGeolocationLib",
url: "https://github.com/ionic-team/ion-ios-geolocation/releases/download/1.0.1/IONGeolocationLib.zip",
checksum: "80e0283964bce3c5d05f61ff4acf4e029305f58d1699a7f16453058ba876bc21" // sha-256
),
.target(
name: "GeolocationPlugin",
dependencies: [
.product(name: "Capacitor", package: "capacitor-swift-pm"),
.product(name: "Cordova", package: "capacitor-swift-pm"),
"IONGeolocationLib"
],
path: "ios/Sources/GeolocationPlugin"),
.testTarget(
name: "GeolocationPluginTests",
dependencies: ["GeolocationPlugin"],
path: "ios/Tests/GeolocationTests")
]
)