From 81a0e41f4c8064bed7749797cdfbb6d9e379f5b9 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Tue, 22 Sep 2026 17:38:28 +0200 Subject: [PATCH] chore: point SPM to Capacitor source reposotory --- Package.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Package.swift b/Package.swift index 71f91bb..37d810d 100644 --- a/Package.swift +++ b/Package.swift @@ -10,14 +10,14 @@ let package = Package( targets: ["GeolocationPlugin"]) ], dependencies: [ - .package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "9.0.0-alpha.5"), + .package(url: "https://github.com/ionic-team/capacitor.git", from: "9.0.0-alpha.7"), .package(url: "https://github.com/ionic-team/ion-ios-geolocation.git", from: "2.1.0") ], targets: [ .target( name: "GeolocationPlugin", dependencies: [ - .product(name: "Capacitor", package: "capacitor-swift-pm"), + .product(name: "Capacitor", package: "capacitor"), .product(name: "IONGeolocationLib", package: "ion-ios-geolocation") ], path: "ios/Sources/GeolocationPlugin"),