|
8 | 8 | import PackageDescription
|
9 | 9 |
|
10 | 10 | let package = Package(
|
11 |
| - name: "google_maps_flutter_ios", |
12 |
| - platforms: [ |
13 |
| - .iOS(.v15), |
14 |
| - ], |
15 |
| - products: [ |
16 |
| - .library(name: "google-maps-flutter-ios", type: .static, targets: ["google_maps_flutter_ios"]) |
17 |
| - ], |
18 |
| - dependencies: [ |
19 |
| - .package(url: "https://github.com/googlemaps/ios-maps-sdk", "9.0.0"..<"10.0.0"), |
20 |
| - .package(url: "https://github.com/googlemaps/google-maps-ios-utils", "6.1.0"..<"7.0.0"), |
21 |
| - ], |
22 |
| - targets: [ |
23 |
| - .target( |
24 |
| - name: "google_maps_flutter_ios", |
25 |
| - dependencies: [ |
26 |
| - .product( |
27 |
| - name: "GoogleMapsUtils", |
28 |
| - package: "google-maps-ios-utils" |
29 |
| - ), |
30 |
| - .product( |
31 |
| - name: "GoogleMaps", |
32 |
| - package: "ios-maps-sdk" |
33 |
| - ), |
34 |
| - ], |
35 |
| - exclude: ["include/google_maps_flutter_ios-umbrella.h", "include/google_maps_flutter_ios.modulemap"], |
36 |
| - resources: [ |
37 |
| - .process("Resources") |
38 |
| - ], |
39 |
| - cSettings: [ |
40 |
| - .headerSearchPath("include/google_maps_flutter_ios") |
41 |
| - ] |
42 |
| - ) |
43 |
| - ] |
| 11 | + name: "google_maps_flutter_ios", |
| 12 | + platforms: [ |
| 13 | + .iOS(.v15) |
| 14 | + ], |
| 15 | + products: [ |
| 16 | + .library(name: "google-maps-flutter-ios", type: .static, targets: ["google_maps_flutter_ios"]) |
| 17 | + ], |
| 18 | + dependencies: [ |
| 19 | + .package(url: "https://github.com/googlemaps/ios-maps-sdk", "9.0.0"..<"10.0.0"), |
| 20 | + .package(url: "https://github.com/googlemaps/google-maps-ios-utils", "6.1.0"..<"7.0.0"), |
| 21 | + ], |
| 22 | + targets: [ |
| 23 | + .target( |
| 24 | + name: "google_maps_flutter_ios", |
| 25 | + dependencies: [ |
| 26 | + .product( |
| 27 | + name: "GoogleMapsUtils", |
| 28 | + package: "google-maps-ios-utils" |
| 29 | + ), |
| 30 | + .product( |
| 31 | + name: "GoogleMaps", |
| 32 | + package: "ios-maps-sdk" |
| 33 | + ), |
| 34 | + ], |
| 35 | + exclude: [ |
| 36 | + "include/google_maps_flutter_ios-umbrella.h", "include/google_maps_flutter_ios.modulemap", |
| 37 | + ], |
| 38 | + resources: [ |
| 39 | + .process("Resources") |
| 40 | + ], |
| 41 | + cSettings: [ |
| 42 | + .headerSearchPath("include/google_maps_flutter_ios") |
| 43 | + ] |
| 44 | + ) |
| 45 | + ] |
44 | 46 | )
|
0 commit comments