No it's private package. In our package, We have several 3rd party maps and these maps are compiled with the predefined settings in Xcode and the google map is one of them. Due to security reasons, we cannot share the internal structure. However, when Google Maps is required, it is added as a target in the project, as shown below. static var google = PackageDescription.Package.Dependency.package( url: https://github.com/googlemaps/ios-maps-sdk.git, from: 8.4.0 ) ... ... ... static var google: [PackageDescription.Target] = [ .target( name: .google, dependencies: [ .byName(name: .core), .product(name: GoogleMaps, package: ios-maps-sdk), .product(name: GoogleMapsBase, package: ios-maps-sdk), .product(name: GoogleMapsCore, package: ios-maps-sdk) ], resources: [ .copy(Theme/dark.json) ] ) ]