Skip to content

Commit

Permalink
Address warnings in Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
evil159 committed Aug 29, 2024
1 parent 455ad90 commit 9d4dd08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ let checksum = "834e87df18a44d6d5035d485a56124f32682d6e5dc95046396244faadf978380

let package = Package(
name: "MapboxCoreMaps",
platforms: [.iOS(.v10), .macOS(.v10_15), .custom("visionos", versionString: "1.0")],
platforms: [.iOS(.v12), .macOS(.v10_15), .custom("visionos", versionString: "1.0")],
products: [
.library(
name: "MapboxCoreMaps",
targets: ["MapboxCoreMapsWrapper"]),
],
dependencies: [
.package(name: "MapboxCommon", url: "https://github.com/mapbox/mapbox-common-ios.git", from: "24.6.0"),
.package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "24.6.0"),
],
targets: [
.target(
name: "MapboxCoreMapsWrapper",
dependencies: ["MapboxCommon", "MapboxCoreMaps"]
dependencies: [.product(name: "MapboxCommon", package: "mapbox-common-ios"), "MapboxCoreMaps"]
),
.binaryTarget(
name: "MapboxCoreMaps",
Expand Down

0 comments on commit 9d4dd08

Please sign in to comment.