Initial commit - Asansör Takip Projesi

This commit is contained in:
2026-04-10 22:43:43 +03:00
parent cab84b4969
commit bd0e890883
92 changed files with 4709 additions and 120 deletions
+31
View File
@@ -0,0 +1,31 @@
// swift-tools-version: 5.9
import PackageDescription
// DO NOT MODIFY THIS FILE - managed by Capacitor CLI commands
let package = Package(
name: "CapApp-SPM",
platforms: [.iOS(.v15)],
products: [
.library(
name: "CapApp-SPM",
targets: ["CapApp-SPM"])
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", exact: "8.3.0"),
.package(name: "CapacitorCommunitySqlite", path: "..\..\..\node_modules\@capacitor-community\sqlite"),
.package(name: "CapacitorNetwork", path: "..\..\..\node_modules\@capacitor\network"),
.package(name: "CapacitorPushNotifications", path: "..\..\..\node_modules\@capacitor\push-notifications")
],
targets: [
.target(
name: "CapApp-SPM",
dependencies: [
.product(name: "Capacitor", package: "capacitor-swift-pm"),
.product(name: "Cordova", package: "capacitor-swift-pm"),
.product(name: "CapacitorCommunitySqlite", package: "CapacitorCommunitySqlite"),
.product(name: "CapacitorNetwork", package: "CapacitorNetwork"),
.product(name: "CapacitorPushNotifications", package: "CapacitorPushNotifications")
]
)
]
)