init
This commit is contained in:
32
node_modules/@capacitor/google-maps/Package.swift
generated
vendored
Normal file
32
node_modules/@capacitor/google-maps/Package.swift
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// swift-tools-version: 5.9
|
||||
import PackageDescription
|
||||
|
||||
let package = Package(
|
||||
name: "CapacitorGoogleMaps",
|
||||
platforms: [.iOS(.v14)],
|
||||
products: [
|
||||
.library(
|
||||
name: "CapacitorGoogleMaps",
|
||||
targets: ["CapacitorGoogleMapsPlugin"])
|
||||
],
|
||||
dependencies: [
|
||||
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", from: "7.0.0"),
|
||||
.package(url: "https://github.com/googlemaps/ios-maps-sdk.git", .upToNextMajor(from:"8.4.0")),
|
||||
.package(url: "https://github.com/googlemaps/google-maps-ios-utils.git", .upToNextMajor(from:"5.0.0"))
|
||||
],
|
||||
targets: [
|
||||
.target(
|
||||
name: "CapacitorGoogleMapsPlugin",
|
||||
dependencies: [
|
||||
.product(name: "Capacitor", package: "capacitor-swift-pm"),
|
||||
.product(name: "Cordova", package: "capacitor-swift-pm"),
|
||||
.product(name: "GoogleMaps", package: "ios-maps-sdk"),
|
||||
.product(name: "GoogleMapsUtils", package: "google-maps-ios-utils")
|
||||
],
|
||||
path: "ios/Sources/CapacitorGoogleMapsPlugin"),
|
||||
.testTarget(
|
||||
name: "CapacitorGoogleMapsPluginTests",
|
||||
dependencies: ["CapacitorGoogleMapsPlugin"],
|
||||
path: "ios/Tests/CapacitorGoogleMapsPluginTests")
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user