├── .gitignore ├── Cartfile ├── Cartfile.resolved ├── GoogleMaps.xcodeproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── project.pbxproj ├── GoogleMaps └── Info.plist ├── GooglePlaces └── Info.plist ├── GoogleMapsBase └── Info.plist ├── GoogleMapsCore └── Info.plist ├── GoogleMapsM4B └── Info.plist ├── LICENSE.google ├── README.md ├── Package.swift └── make_xcframework.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | xcuserdata 3 | .DS_Store 4 | Carthage -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | binary "https://dl.google.com/geosdk/GoogleMaps.json" == 5.0.0 2 | binary "https://dl.google.com/geosdk/GooglePlaces.json" == 5.0.0 -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | binary "https://dl.google.com/geosdk/GoogleMaps.json" "5.0.0" 2 | binary "https://dl.google.com/geosdk/GooglePlaces.json" "5.0.0" 3 | -------------------------------------------------------------------------------- /GoogleMaps.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /GoogleMaps.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /GoogleMaps/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | $(MARKETING_VERSION) 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /GooglePlaces/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | $(MARKETING_VERSION) 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /GoogleMapsBase/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | $(MARKETING_VERSION) 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /GoogleMapsCore/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | $(MARKETING_VERSION) 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /GoogleMapsM4B/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | $(MARKETING_VERSION) 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | 22 | 23 | -------------------------------------------------------------------------------- /LICENSE.google: -------------------------------------------------------------------------------- 1 | By using the Google Maps SDK for iOS you accept Google's Terms of Service and 2 | Policies. Pay attention particularly to the following aspects: 3 | 4 | * Depending on your app and use case, you may be required to display 5 | attribution. Read more about [attribution requirements](https://developers.google.com/maps/documentation/ios-sdk/intro#attribution_requirements). 6 | * Your API usage is subject to quota limitations. Read more about [usage 7 | limits](https://developers.google.com/maps/pricing-and-plans/). 8 | * The [Terms of Service](https://developers.google.com/maps/terms) are a 9 | comprehensive description of the legal contract that you enter with Google 10 | by using the Google Maps SDK for iOS. You may want to pay special attention 11 | to [section 10](https://developers.google.com/maps/terms#10-license-restrictions), 12 | as it talks in detail about what you can do with the API, and what you 13 | can't. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Google Maps Swift Package 2 | 3 | ## Requirements 4 | * [iOS 10.0](https://wikipedia.org/wiki/IOS_10) or later. 5 | * [Xcode 12.0](https://developer.apple.com/xcode) or later. 6 | 7 | ## Installation 8 | - Add the following dependency to your project's `Package.swift`. 9 | 10 | ```swift 11 | dependencies: [ 12 | .package(url: "https://github.com/YAtechnologies/GoogleMaps-SP.git", .upToNextMinor(from: "5.0.0")) 13 | ] 14 | ``` 15 | 16 | ### Known Issues 17 | - If you use a Google Maps Swift package in an app with extensions, the build system incorrectly embeds the binary dependencies alongside the extension in the PlugIns directory, causing validation of the archived app to fail. (69834549) (FB8761306) 18 | 19 | **Workaround:** Add a scheme post-build action which removes the embedded binaries from the PlugIns directory after the build, e.g. `rm -rf "${TARGET_BUILD_DIR}/${TARGET_NAME}.app"/PlugIns/*.framework`. 20 | 21 | ## Sponsor 22 | If you find this package useful please consider **[STARRING 🌟](https://github.com/YAtechnologies/GoogleMaps-SP/stargazers)** this repository. 23 | 24 | ## License 25 | The **Google Maps iOS SDK** and **Google Places iOS SDK** libraries are the property of Google and are subject to *Google's Terms of Service*. See [LICENSE.google](https://github.com/YAtechnologies/GoogleMaps-SP/blob/main/LICENSE.google) for details. 26 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.5 2 | import PackageDescription 3 | 4 | let package = Package( 5 | name: "GoogleMaps", 6 | products: [ 7 | .library( 8 | name: "GoogleMapsBase", 9 | targets: [ 10 | "GoogleMapsBase" 11 | ] 12 | ), 13 | .library( 14 | name: "GoogleMapsCore", 15 | targets: [ 16 | "GoogleMapsCore" 17 | ] 18 | ), 19 | .library( 20 | name: "GoogleMaps", 21 | targets: [ 22 | "GoogleMaps", 23 | "GoogleMapsBase", 24 | "GoogleMapsCore" 25 | ] 26 | ), 27 | .library( 28 | name: "GoogleMapsM4B", 29 | targets: [ 30 | "GoogleMapsM4B" 31 | ] 32 | ), 33 | .library( 34 | name: "GooglePlaces", 35 | targets: [ 36 | "GooglePlaces", 37 | "GoogleMapsBase" 38 | ] 39 | ) 40 | ], 41 | targets: [ 42 | .binaryTarget( 43 | name: "GoogleMaps", 44 | url: "https://github.com/vfn/GoogleMaps-SP/releases/download/5.0.0-M1/GoogleMaps.xcframework.zip", 45 | checksum: "31da2e64335f4eaf8fe62237604753a252e4009a2b944f62ca58345190c513ee" 46 | ), 47 | .binaryTarget( 48 | name: "GoogleMapsBase", 49 | url: "https://github.com/vfn/GoogleMaps-SP/releases/download/5.0.0-M1/GoogleMapsBase.xcframework.zip", 50 | checksum: "1edd2007b14954c04e9adba68eb9ca668040cad337358c918abbba8bbf507c8b" 51 | ), 52 | .binaryTarget( 53 | name: "GoogleMapsCore", 54 | url: "https://github.com/vfn/GoogleMaps-SP/releases/download/5.0.0-M1/GoogleMapsCore.xcframework.zip", 55 | checksum: "714b878ab65b6ac4b84a74c6bda6a424d3b4d5633167302ca9e38fed58290e42" 56 | ), 57 | .binaryTarget( 58 | name: "GoogleMapsM4B", 59 | url: "https://github.com/vfn/GoogleMaps-SP/releases/download/5.0.0-M1/GoogleMapsM4B.xcframework.zip", 60 | checksum: "ce64b51af3c965fd8679fa6be89ecd36f221cb26d183b7110d544b504060c321" 61 | ), 62 | .binaryTarget( 63 | name: "GooglePlaces", 64 | url: "https://github.com/vfn/GoogleMaps-SP/releases/download/5.0.0-M1/GooglePlaces.xcframework.zip", 65 | checksum: "e188774efd12f8fd9253aa1ef22e08687d2c5af2dda8ec147c17a84753bb9128" 66 | ) 67 | ] 68 | ) 69 | -------------------------------------------------------------------------------- /make_xcframework.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | BUILD_DIRECTORY="Build" 4 | 5 | function convert_frameworks_arm64_to_iphonesimulator() { 6 | project_name=$1 7 | framework_name=$2 8 | 9 | xcrun vtool -arch arm64 \ 10 | -set-build-version 7 11.0 13.7 \ 11 | -replace \ 12 | -output "../Carthage/Build/iOS/$framework_name.framework/$framework_name" \ 13 | "../Carthage/Build/iOS/$framework_name.framework/$framework_name" 14 | } 15 | 16 | function archive_project_iphoneos() { 17 | project_name=$1 18 | framework_name=$2 19 | 20 | # Archive iOS project. 21 | xcodebuild archive\ 22 | -project "../$project_name.xcodeproj"\ 23 | -scheme "$framework_name"\ 24 | -configuration "Release"\ 25 | -destination "generic/platform=iOS"\ 26 | -archivePath "$framework_name.framework-iphoneos.xcarchive"\ 27 | SKIP_INSTALL=NO\ 28 | BUILD_LIBRARY_FOR_DISTRIBUTION=YES 29 | } 30 | 31 | function archive_project_iphonesimulator() { 32 | project_name=$1 33 | framework_name=$2 34 | 35 | # Archive iOS Simulator project. 36 | xcodebuild archive\ 37 | -project "../$project_name.xcodeproj"\ 38 | -scheme "$framework_name"\ 39 | -configuration "Simulator Release"\ 40 | -destination "generic/platform=iOS Simulator"\ 41 | -archivePath "$framework_name.framework-iphonesimulator.xcarchive"\ 42 | SKIP_INSTALL=NO\ 43 | BUILD_LIBRARY_FOR_DISTRIBUTION=YES 44 | } 45 | 46 | function create_xcframework() { 47 | project_name=$1 48 | framework_name=$2 49 | 50 | # Create XCFramework from the archived project. 51 | xcodebuild -create-xcframework\ 52 | -framework "$framework_name.framework-iphoneos.xcarchive/Products/Library/Frameworks/$framework_name.framework"\ 53 | -framework "$framework_name.framework-iphonesimulator.xcarchive/Products/Library/Frameworks/$framework_name.framework"\ 54 | -output "$framework_name.xcframework" 55 | 56 | # Compress the XCFramework. 57 | zip -r -X "$framework_name.xcframework.zip" "$framework_name.xcframework/" 58 | 59 | # Save the SHA-256 checksum 60 | shasum -a 256 "$framework_name.xcframework.zip" >> checksum 61 | } 62 | 63 | function cleanup() { 64 | # rm -r *.xcframework 65 | rm -r *.xcarchive 66 | } 67 | 68 | # Install Google Maps SDK for iOS. 69 | carthage update 70 | 71 | rm -rf $BUILD_DIRECTORY 72 | mkdir $BUILD_DIRECTORY 73 | cd $BUILD_DIRECTORY 74 | 75 | frameworks=("GoogleMaps" "GoogleMapsBase" "GoogleMapsCore" "GoogleMapsM4B" "GooglePlaces") 76 | for framework in "${frameworks[@]}"; do 77 | archive_project_iphoneos "GoogleMaps" "$framework" 78 | done 79 | for framework in "${frameworks[@]}"; do 80 | convert_frameworks_arm64_to_iphonesimulator "GoogleMaps" "$framework" 81 | done 82 | for framework in "${frameworks[@]}"; do 83 | archive_project_iphonesimulator "GoogleMaps" "$framework" 84 | done 85 | for framework in "${frameworks[@]}"; do 86 | create_xcframework "GoogleMaps" "$framework" 87 | done 88 | 89 | cleanup 90 | 91 | echo $'\n** XCFRAMEWORK CREATION FINISHED **\n' -------------------------------------------------------------------------------- /GoogleMaps.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 8A08AD10253999110078DE66 /* GoogleMaps.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8A08AD0F253999110078DE66 /* GoogleMaps.bundle */; }; 11 | 8A08AD552539996C0078DE66 /* GooglePlaces.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8A08AD542539996C0078DE66 /* GooglePlaces.bundle */; }; 12 | 8A08AD65253999DB0078DE66 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66415C2539834F000E9321 /* QuartzCore.framework */; }; 13 | 8A66400025397D6F000E9321 /* GMSDeprecationMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A663FFA25397D6F000E9321 /* GMSDeprecationMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; 14 | 8A66400125397D6F000E9321 /* GoogleMapsBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A663FFB25397D6F000E9321 /* GoogleMapsBase.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | 8A66400225397D6F000E9321 /* GMSCompatabilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A663FFC25397D6F000E9321 /* GMSCompatabilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | 8A66400325397D6F000E9321 /* GMSCoordinateBounds.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A663FFD25397D6F000E9321 /* GMSCoordinateBounds.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | 8A66401725397D90000E9321 /* GoogleMaps.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A66401325397D90000E9321 /* GoogleMaps.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | 8A66408B25397EC3000E9321 /* GoogleMapsBase in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A663FF225397D68000E9321 /* GoogleMapsBase */; }; 19 | 8A66409625397EF2000E9321 /* GoogleMapsM4B in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66401625397D90000E9321 /* GoogleMapsM4B */; }; 20 | 8A6640A125397EFE000E9321 /* GooglePlaces in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66403925397DA0000E9321 /* GooglePlaces */; }; 21 | 8A6640BB253980A2000E9321 /* GoogleMapsBase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A8C8EFC25387A3E00F5C247 /* GoogleMapsBase.framework */; }; 22 | 8A6640EE2539820E000E9321 /* GoogleMaps in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A663F7D25397CE4000E9321 /* GoogleMaps */; }; 23 | 8A66410A2539826E000E9321 /* GoogleMapsCore in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66400B25397D7D000E9321 /* GoogleMapsCore */; }; 24 | 8A6641112539828D000E9321 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A6641102539828D000E9321 /* Foundation.framework */; }; 25 | 8A664117253982B6000E9321 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A6641102539828D000E9321 /* Foundation.framework */; }; 26 | 8A66411E253982C0000E9321 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66411D253982C0000E9321 /* UIKit.framework */; }; 27 | 8A664125253982D1000E9321 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664124253982D0000E9321 /* CoreGraphics.framework */; }; 28 | 8A664127253982D9000E9321 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664126253982D9000E9321 /* CoreLocation.framework */; }; 29 | 8A664135253982F1000E9321 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664134253982F1000E9321 /* CoreTelephony.framework */; }; 30 | 8A66413C253982FB000E9321 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66413B253982FB000E9321 /* Security.framework */; }; 31 | 8A66413E25398302000E9321 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66413D25398302000E9321 /* CoreText.framework */; }; 32 | 8A66414925398310000E9321 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66412D253982E8000E9321 /* libc++.tbd */; }; 33 | 8A66415025398315000E9321 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66414F25398315000E9321 /* libz.tbd */; }; 34 | 8A66415625398342000E9321 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66411D253982C0000E9321 /* UIKit.framework */; }; 35 | 8A66416925398367000E9321 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664124253982D0000E9321 /* CoreGraphics.framework */; }; 36 | 8A66417025398371000E9321 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66416F25398371000E9321 /* GLKit.framework */; }; 37 | 8A66417125398376000E9321 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66413D25398302000E9321 /* CoreText.framework */; }; 38 | 8A66417825398383000E9321 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66417725398383000E9321 /* OpenGLES.framework */; }; 39 | 8A66417F2539838B000E9321 /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66417E2539838B000E9321 /* CoreData.framework */; }; 40 | 8A66418625398396000E9321 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664134253982F1000E9321 /* CoreTelephony.framework */; }; 41 | 8A6641872539839E000E9321 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664126253982D9000E9321 /* CoreLocation.framework */; }; 42 | 8A66418E253983AA000E9321 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66418D253983AA000E9321 /* SystemConfiguration.framework */; }; 43 | 8A6641B2253983ED000E9321 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66418F253983B1000E9321 /* ImageIO.framework */; }; 44 | 8A6641B8253983F6000E9321 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66415C2539834F000E9321 /* QuartzCore.framework */; }; 45 | 8A6641BE25398406000E9321 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664196253983BC000E9321 /* CoreImage.framework */; }; 46 | 8A6641CE25398410000E9321 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66412D253982E8000E9321 /* libc++.tbd */; }; 47 | 8A6641D425398415000E9321 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66414F25398315000E9321 /* libz.tbd */; }; 48 | 8A6641DA2539842E000E9321 /* GoogleMapsBase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A8C8EFC25387A3E00F5C247 /* GoogleMapsBase.framework */; }; 49 | 8A6641E125398442000E9321 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A6641102539828D000E9321 /* Foundation.framework */; }; 50 | 8A6641E225398447000E9321 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66411D253982C0000E9321 /* UIKit.framework */; }; 51 | 8A6641E825398452000E9321 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664124253982D0000E9321 /* CoreGraphics.framework */; }; 52 | 8A6641F425398461000E9321 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A664126253982D9000E9321 /* CoreLocation.framework */; }; 53 | 8A6641FA25398472000E9321 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66415C2539834F000E9321 /* QuartzCore.framework */; }; 54 | 8A6642052539847A000E9321 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66412D253982E8000E9321 /* libc++.tbd */; }; 55 | 8A66421625398491000E9321 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A6641102539828D000E9321 /* Foundation.framework */; }; 56 | 8A66421725398499000E9321 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66412D253982E8000E9321 /* libc++.tbd */; }; 57 | 8A7107D926525FB000C2AD24 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66413B253982FB000E9321 /* Security.framework */; }; 58 | 8A7107DA26525FC000C2AD24 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A66414F25398315000E9321 /* libz.tbd */; }; 59 | 8A71080E26526A9000C2AD24 /* GMSIndoorBuilding.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107DD26526A8E00C2AD24 /* GMSIndoorBuilding.h */; settings = {ATTRIBUTES = (Public, ); }; }; 60 | 8A71080F26526A9000C2AD24 /* GMSGroundOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107DE26526A8E00C2AD24 /* GMSGroundOverlay.h */; settings = {ATTRIBUTES = (Public, ); }; }; 61 | 8A71081026526A9000C2AD24 /* GMSGeometryUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107DF26526A8E00C2AD24 /* GMSGeometryUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; 62 | 8A71081126526A9000C2AD24 /* GMSOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E026526A8E00C2AD24 /* GMSOverlay.h */; settings = {ATTRIBUTES = (Public, ); }; }; 63 | 8A71081226526A9000C2AD24 /* GMSStampStyle+Premium.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E126526A8E00C2AD24 /* GMSStampStyle+Premium.h */; settings = {ATTRIBUTES = (Public, ); }; }; 64 | 8A71081326526A9000C2AD24 /* GMSStyleSpan.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E226526A8E00C2AD24 /* GMSStyleSpan.h */; settings = {ATTRIBUTES = (Public, ); }; }; 65 | 8A71081426526A9000C2AD24 /* GMSCameraUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E326526A8E00C2AD24 /* GMSCameraUpdate.h */; settings = {ATTRIBUTES = (Public, ); }; }; 66 | 8A71081526526A9000C2AD24 /* GMSMapView+Premium.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E426526A8E00C2AD24 /* GMSMapView+Premium.h */; settings = {ATTRIBUTES = (Public, ); }; }; 67 | 8A71081626526A9000C2AD24 /* GMSPolyline.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E526526A8E00C2AD24 /* GMSPolyline.h */; settings = {ATTRIBUTES = (Public, ); }; }; 68 | 8A71081726526A9000C2AD24 /* GMSMapID+Premium.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E626526A8E00C2AD24 /* GMSMapID+Premium.h */; settings = {ATTRIBUTES = (Public, ); }; }; 69 | 8A71081826526A9000C2AD24 /* GMSPanoramaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E726526A8F00C2AD24 /* GMSPanoramaView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 70 | 8A71081926526A9000C2AD24 /* GMSOrientation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E826526A8F00C2AD24 /* GMSOrientation.h */; settings = {ATTRIBUTES = (Public, ); }; }; 71 | 8A71081A26526A9000C2AD24 /* GMSMutablePath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107E926526A8F00C2AD24 /* GMSMutablePath.h */; settings = {ATTRIBUTES = (Public, ); }; }; 72 | 8A71081B26526A9000C2AD24 /* GoogleMaps.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107EA26526A8F00C2AD24 /* GoogleMaps.h */; settings = {ATTRIBUTES = (Public, ); }; }; 73 | 8A71081C26526A9000C2AD24 /* GMSTileLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107EB26526A8F00C2AD24 /* GMSTileLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 74 | 8A71081D26526A9000C2AD24 /* GMSAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107EC26526A8F00C2AD24 /* GMSAddress.h */; settings = {ATTRIBUTES = (Public, ); }; }; 75 | 8A71081E26526A9000C2AD24 /* GMSStrokeStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107ED26526A8F00C2AD24 /* GMSStrokeStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; 76 | 8A71081F26526A9000C2AD24 /* GMSPanoramaCamera.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107EE26526A8F00C2AD24 /* GMSPanoramaCamera.h */; settings = {ATTRIBUTES = (Public, ); }; }; 77 | 8A71082026526A9000C2AD24 /* GMSMapView+Animation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107EF26526A8F00C2AD24 /* GMSMapView+Animation.h */; settings = {ATTRIBUTES = (Public, ); }; }; 78 | 8A71082126526A9000C2AD24 /* GMSPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F026526A8F00C2AD24 /* GMSPath.h */; settings = {ATTRIBUTES = (Public, ); }; }; 79 | 8A71082226526A9000C2AD24 /* GMSPolygonLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F126526A8F00C2AD24 /* GMSPolygonLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 80 | 8A71082326526A9000C2AD24 /* GMSPanoramaService.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F226526A8F00C2AD24 /* GMSPanoramaService.h */; settings = {ATTRIBUTES = (Public, ); }; }; 81 | 8A71082426526A9000C2AD24 /* GMSCircle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F326526A8F00C2AD24 /* GMSCircle.h */; settings = {ATTRIBUTES = (Public, ); }; }; 82 | 8A71082526526A9000C2AD24 /* GMSMapStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F426526A8F00C2AD24 /* GMSMapStyle.h */; settings = {ATTRIBUTES = (Public, ); }; }; 83 | 8A71082626526A9000C2AD24 /* GMSMapLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F526526A8F00C2AD24 /* GMSMapLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 84 | 8A71082726526A9000C2AD24 /* GMSPanorama.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F626526A8F00C2AD24 /* GMSPanorama.h */; settings = {ATTRIBUTES = (Public, ); }; }; 85 | 8A71082826526A9000C2AD24 /* GMSMarker+Premium.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F726526A8F00C2AD24 /* GMSMarker+Premium.h */; settings = {ATTRIBUTES = (Public, ); }; }; 86 | 8A71082926526A9000C2AD24 /* GMSPanoramaSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F826526A8F00C2AD24 /* GMSPanoramaSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; 87 | 8A71082A26526A9000C2AD24 /* GMSIndoorLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107F926526A8F00C2AD24 /* GMSIndoorLevel.h */; settings = {ATTRIBUTES = (Public, ); }; }; 88 | 8A71082B26526A9000C2AD24 /* GMSServices.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107FA26526A8F00C2AD24 /* GMSServices.h */; settings = {ATTRIBUTES = (Public, ); }; }; 89 | 8A71082C26526A9000C2AD24 /* GMSCoordinateBounds+GoogleMaps.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107FB26526A8F00C2AD24 /* GMSCoordinateBounds+GoogleMaps.h */; settings = {ATTRIBUTES = (Public, ); }; }; 90 | 8A71082D26526A9000C2AD24 /* GMSStrokeStyle+Premium.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107FC26526A8F00C2AD24 /* GMSStrokeStyle+Premium.h */; settings = {ATTRIBUTES = (Public, ); }; }; 91 | 8A71082E26526A9000C2AD24 /* GMSUISettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107FD26526A8F00C2AD24 /* GMSUISettings.h */; settings = {ATTRIBUTES = (Public, ); }; }; 92 | 8A71082F26526A9000C2AD24 /* GMSGeocoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107FE26526A8F00C2AD24 /* GMSGeocoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; 93 | 8A71083026526A9000C2AD24 /* GMSCameraPosition.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A7107FF26526A8F00C2AD24 /* GMSCameraPosition.h */; settings = {ATTRIBUTES = (Public, ); }; }; 94 | 8A71083126526A9000C2AD24 /* GMSMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080026526A8F00C2AD24 /* GMSMarker.h */; settings = {ATTRIBUTES = (Public, ); }; }; 95 | 8A71083226526A9000C2AD24 /* GMSMarkerLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080126526A8F00C2AD24 /* GMSMarkerLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 96 | 8A71083326526A9000C2AD24 /* GMSIndoorDisplay.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080226526A8F00C2AD24 /* GMSIndoorDisplay.h */; settings = {ATTRIBUTES = (Public, ); }; }; 97 | 8A71083426526A9000C2AD24 /* GMSSyncTileLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080326526A8F00C2AD24 /* GMSSyncTileLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 98 | 8A71083526526A9000C2AD24 /* GMSProjection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080426526A8F00C2AD24 /* GMSProjection.h */; settings = {ATTRIBUTES = (Public, ); }; }; 99 | 8A71083626526A9000C2AD24 /* GMSURLTileLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080526526A8F00C2AD24 /* GMSURLTileLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 100 | 8A71083726526A9000C2AD24 /* GMSPanoramaLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080626526A8F00C2AD24 /* GMSPanoramaLink.h */; settings = {ATTRIBUTES = (Public, ); }; }; 101 | 8A71083826526A9000C2AD24 /* GMSPanoramaLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080726526A8F00C2AD24 /* GMSPanoramaLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 102 | 8A71083926526A9000C2AD24 /* GMSAccessibilityLabels.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080826526A8F00C2AD24 /* GMSAccessibilityLabels.h */; settings = {ATTRIBUTES = (Public, ); }; }; 103 | 8A71083A26526A9000C2AD24 /* GMSPolygon.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080926526A9000C2AD24 /* GMSPolygon.h */; settings = {ATTRIBUTES = (Public, ); }; }; 104 | 8A71083B26526A9000C2AD24 /* GMSPanoramaCameraUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080A26526A9000C2AD24 /* GMSPanoramaCameraUpdate.h */; settings = {ATTRIBUTES = (Public, ); }; }; 105 | 8A71083C26526A9000C2AD24 /* GMSMapView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080B26526A9000C2AD24 /* GMSMapView.h */; settings = {ATTRIBUTES = (Public, ); }; }; 106 | 8A71083D26526A9000C2AD24 /* GMSOverlayLayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080C26526A9000C2AD24 /* GMSOverlayLayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 107 | 8A71083E26526A9000C2AD24 /* GMSCALayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71080D26526A9000C2AD24 /* GMSCALayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 108 | 8A71085726526AE900C2AD24 /* GooglePlaces.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71083F26526AE800C2AD24 /* GooglePlaces.h */; settings = {ATTRIBUTES = (Public, ); }; }; 109 | 8A71085826526AE900C2AD24 /* GMSPlacesDeprecationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084026526AE800C2AD24 /* GMSPlacesDeprecationUtils.h */; settings = {ATTRIBUTES = (Public, ); }; }; 110 | 8A71085926526AE900C2AD24 /* GMSPlaceLocationOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084126526AE900C2AD24 /* GMSPlaceLocationOptions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 111 | 8A71085A26526AE900C2AD24 /* GMSPlusCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084226526AE900C2AD24 /* GMSPlusCode.h */; settings = {ATTRIBUTES = (Public, ); }; }; 112 | 8A71085B26526AE900C2AD24 /* GMSPlaceViewportInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084326526AE900C2AD24 /* GMSPlaceViewportInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; 113 | 8A71085C26526AE900C2AD24 /* GMSAutocompletePrediction.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084426526AE900C2AD24 /* GMSAutocompletePrediction.h */; settings = {ATTRIBUTES = (Public, ); }; }; 114 | 8A71085D26526AE900C2AD24 /* GMSAutocompleteFetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084526526AE900C2AD24 /* GMSAutocompleteFetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; 115 | 8A71085E26526AE900C2AD24 /* GMSAutocompleteSessionToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084626526AE900C2AD24 /* GMSAutocompleteSessionToken.h */; settings = {ATTRIBUTES = (Public, ); }; }; 116 | 8A71085F26526AE900C2AD24 /* GMSAutocompleteTableDataSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084726526AE900C2AD24 /* GMSAutocompleteTableDataSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; 117 | 8A71086026526AE900C2AD24 /* GMSAutocompleteMatchFragment.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084826526AE900C2AD24 /* GMSAutocompleteMatchFragment.h */; settings = {ATTRIBUTES = (Public, ); }; }; 118 | 8A71086126526AE900C2AD24 /* GMSPlaceLikelihoodList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084926526AE900C2AD24 /* GMSPlaceLikelihoodList.h */; settings = {ATTRIBUTES = (Public, ); }; }; 119 | 8A71086226526AE900C2AD24 /* GMSPlacePhotoMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084A26526AE900C2AD24 /* GMSPlacePhotoMetadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; 120 | 8A71086326526AE900C2AD24 /* GMSOpeningHours.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084B26526AE900C2AD24 /* GMSOpeningHours.h */; settings = {ATTRIBUTES = (Public, ); }; }; 121 | 8A71086426526AE900C2AD24 /* GMSPlacePhotoMetadataList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084C26526AE900C2AD24 /* GMSPlacePhotoMetadataList.h */; settings = {ATTRIBUTES = (Public, ); }; }; 122 | 8A71086526526AE900C2AD24 /* GMSPlacesClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084D26526AE900C2AD24 /* GMSPlacesClient.h */; settings = {ATTRIBUTES = (Public, ); }; }; 123 | 8A71086626526AE900C2AD24 /* GMSPlaceFieldMask.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084E26526AE900C2AD24 /* GMSPlaceFieldMask.h */; settings = {ATTRIBUTES = (Public, ); }; }; 124 | 8A71086726526AE900C2AD24 /* GMSPlaceTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71084F26526AE900C2AD24 /* GMSPlaceTypes.h */; settings = {ATTRIBUTES = (Public, ); }; }; 125 | 8A71086826526AE900C2AD24 /* GMSAutocompleteResultsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71085026526AE900C2AD24 /* GMSAutocompleteResultsViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 126 | 8A71086926526AE900C2AD24 /* GMSAutocompleteFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71085126526AE900C2AD24 /* GMSAutocompleteFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; 127 | 8A71086A26526AE900C2AD24 /* GMSAddressComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71085226526AE900C2AD24 /* GMSAddressComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; 128 | 8A71086B26526AE900C2AD24 /* GMSPlace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71085326526AE900C2AD24 /* GMSPlace.h */; settings = {ATTRIBUTES = (Public, ); }; }; 129 | 8A71086C26526AE900C2AD24 /* GMSPlaceLikelihood.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71085426526AE900C2AD24 /* GMSPlaceLikelihood.h */; settings = {ATTRIBUTES = (Public, ); }; }; 130 | 8A71086D26526AE900C2AD24 /* GMSAutocompleteViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71085526526AE900C2AD24 /* GMSAutocompleteViewController.h */; settings = {ATTRIBUTES = (Public, ); }; }; 131 | 8A71086E26526AE900C2AD24 /* GMSPlacesErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A71085626526AE900C2AD24 /* GMSPlacesErrors.h */; settings = {ATTRIBUTES = (Public, ); }; }; 132 | /* End PBXBuildFile section */ 133 | 134 | /* Begin PBXContainerItemProxy section */ 135 | 8A6640D025398123000E9321 /* PBXContainerItemProxy */ = { 136 | isa = PBXContainerItemProxy; 137 | containerPortal = 8A8C8EE125387A0C00F5C247 /* Project object */; 138 | proxyType = 1; 139 | remoteGlobalIDString = 8A8C8EFB25387A3E00F5C247; 140 | remoteInfo = GoogleMapsBase; 141 | }; 142 | 8A6640D225398123000E9321 /* PBXContainerItemProxy */ = { 143 | isa = PBXContainerItemProxy; 144 | containerPortal = 8A8C8EE125387A0C00F5C247 /* Project object */; 145 | proxyType = 1; 146 | remoteGlobalIDString = 8A8C8F0A25387A4B00F5C247; 147 | remoteInfo = GoogleMapsCore; 148 | }; 149 | /* End PBXContainerItemProxy section */ 150 | 151 | /* Begin PBXFileReference section */ 152 | 8A08AD0F253999110078DE66 /* GoogleMaps.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = GoogleMaps.bundle; sourceTree = ""; }; 153 | 8A08AD542539996C0078DE66 /* GooglePlaces.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = GooglePlaces.bundle; sourceTree = ""; }; 154 | 8A663F7D25397CE4000E9321 /* GoogleMaps */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "compiled.mach-o.objfile"; name = GoogleMaps; path = ../Carthage/Build/iOS/GoogleMaps.framework/GoogleMaps; sourceTree = ""; }; 155 | 8A663FE425397D2B000E9321 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = ""; }; 156 | 8A663FF225397D68000E9321 /* GoogleMapsBase */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "compiled.mach-o.objfile"; name = GoogleMapsBase; path = ../Carthage/Build/iOS/GoogleMapsBase.framework/GoogleMapsBase; sourceTree = ""; }; 157 | 8A663FFA25397D6F000E9321 /* GMSDeprecationMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSDeprecationMacros.h; sourceTree = ""; }; 158 | 8A663FFB25397D6F000E9321 /* GoogleMapsBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoogleMapsBase.h; sourceTree = ""; }; 159 | 8A663FFC25397D6F000E9321 /* GMSCompatabilityMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSCompatabilityMacros.h; sourceTree = ""; }; 160 | 8A663FFD25397D6F000E9321 /* GMSCoordinateBounds.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSCoordinateBounds.h; sourceTree = ""; }; 161 | 8A663FFF25397D6F000E9321 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = ""; }; 162 | 8A66400A25397D7D000E9321 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = ""; }; 163 | 8A66400B25397D7D000E9321 /* GoogleMapsCore */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "compiled.mach-o.objfile"; name = GoogleMapsCore; path = ../Carthage/Build/iOS/GoogleMapsCore.framework/GoogleMapsCore; sourceTree = ""; }; 164 | 8A66401325397D90000E9321 /* GoogleMaps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoogleMaps.h; sourceTree = ""; }; 165 | 8A66401525397D90000E9321 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = ""; }; 166 | 8A66401625397D90000E9321 /* GoogleMapsM4B */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "compiled.mach-o.objfile"; name = GoogleMapsM4B; path = ../Carthage/Build/iOS/GoogleMapsM4B.framework/GoogleMapsM4B; sourceTree = ""; }; 167 | 8A66401F25397DA0000E9321 /* module.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = module.modulemap; sourceTree = ""; }; 168 | 8A66403925397DA0000E9321 /* GooglePlaces */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "compiled.mach-o.objfile"; name = GooglePlaces; path = ../Carthage/Build/iOS/GooglePlaces.framework/GooglePlaces; sourceTree = ""; }; 169 | 8A6641102539828D000E9321 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 170 | 8A66411D253982C0000E9321 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 171 | 8A664124253982D0000E9321 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 172 | 8A664126253982D9000E9321 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; }; 173 | 8A66412D253982E8000E9321 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; }; 174 | 8A664134253982F1000E9321 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; 175 | 8A66413B253982FB000E9321 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; }; 176 | 8A66413D25398302000E9321 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; }; 177 | 8A66414F25398315000E9321 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; }; 178 | 8A66415C2539834F000E9321 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; 179 | 8A66416F25398371000E9321 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; }; 180 | 8A66417725398383000E9321 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; 181 | 8A66417E2539838B000E9321 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; 182 | 8A66418D253983AA000E9321 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; }; 183 | 8A66418F253983B1000E9321 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; }; 184 | 8A664196253983BC000E9321 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; }; 185 | 8A7107DD26526A8E00C2AD24 /* GMSIndoorBuilding.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSIndoorBuilding.h; sourceTree = ""; }; 186 | 8A7107DE26526A8E00C2AD24 /* GMSGroundOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSGroundOverlay.h; sourceTree = ""; }; 187 | 8A7107DF26526A8E00C2AD24 /* GMSGeometryUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSGeometryUtils.h; sourceTree = ""; }; 188 | 8A7107E026526A8E00C2AD24 /* GMSOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSOverlay.h; sourceTree = ""; }; 189 | 8A7107E126526A8E00C2AD24 /* GMSStampStyle+Premium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GMSStampStyle+Premium.h"; sourceTree = ""; }; 190 | 8A7107E226526A8E00C2AD24 /* GMSStyleSpan.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSStyleSpan.h; sourceTree = ""; }; 191 | 8A7107E326526A8E00C2AD24 /* GMSCameraUpdate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSCameraUpdate.h; sourceTree = ""; }; 192 | 8A7107E426526A8E00C2AD24 /* GMSMapView+Premium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GMSMapView+Premium.h"; sourceTree = ""; }; 193 | 8A7107E526526A8E00C2AD24 /* GMSPolyline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPolyline.h; sourceTree = ""; }; 194 | 8A7107E626526A8E00C2AD24 /* GMSMapID+Premium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GMSMapID+Premium.h"; sourceTree = ""; }; 195 | 8A7107E726526A8F00C2AD24 /* GMSPanoramaView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanoramaView.h; sourceTree = ""; }; 196 | 8A7107E826526A8F00C2AD24 /* GMSOrientation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSOrientation.h; sourceTree = ""; }; 197 | 8A7107E926526A8F00C2AD24 /* GMSMutablePath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSMutablePath.h; sourceTree = ""; }; 198 | 8A7107EA26526A8F00C2AD24 /* GoogleMaps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GoogleMaps.h; sourceTree = ""; }; 199 | 8A7107EB26526A8F00C2AD24 /* GMSTileLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSTileLayer.h; sourceTree = ""; }; 200 | 8A7107EC26526A8F00C2AD24 /* GMSAddress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAddress.h; sourceTree = ""; }; 201 | 8A7107ED26526A8F00C2AD24 /* GMSStrokeStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSStrokeStyle.h; sourceTree = ""; }; 202 | 8A7107EE26526A8F00C2AD24 /* GMSPanoramaCamera.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanoramaCamera.h; sourceTree = ""; }; 203 | 8A7107EF26526A8F00C2AD24 /* GMSMapView+Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GMSMapView+Animation.h"; sourceTree = ""; }; 204 | 8A7107F026526A8F00C2AD24 /* GMSPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPath.h; sourceTree = ""; }; 205 | 8A7107F126526A8F00C2AD24 /* GMSPolygonLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPolygonLayer.h; sourceTree = ""; }; 206 | 8A7107F226526A8F00C2AD24 /* GMSPanoramaService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanoramaService.h; sourceTree = ""; }; 207 | 8A7107F326526A8F00C2AD24 /* GMSCircle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSCircle.h; sourceTree = ""; }; 208 | 8A7107F426526A8F00C2AD24 /* GMSMapStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSMapStyle.h; sourceTree = ""; }; 209 | 8A7107F526526A8F00C2AD24 /* GMSMapLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSMapLayer.h; sourceTree = ""; }; 210 | 8A7107F626526A8F00C2AD24 /* GMSPanorama.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanorama.h; sourceTree = ""; }; 211 | 8A7107F726526A8F00C2AD24 /* GMSMarker+Premium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GMSMarker+Premium.h"; sourceTree = ""; }; 212 | 8A7107F826526A8F00C2AD24 /* GMSPanoramaSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanoramaSource.h; sourceTree = ""; }; 213 | 8A7107F926526A8F00C2AD24 /* GMSIndoorLevel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSIndoorLevel.h; sourceTree = ""; }; 214 | 8A7107FA26526A8F00C2AD24 /* GMSServices.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSServices.h; sourceTree = ""; }; 215 | 8A7107FB26526A8F00C2AD24 /* GMSCoordinateBounds+GoogleMaps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GMSCoordinateBounds+GoogleMaps.h"; sourceTree = ""; }; 216 | 8A7107FC26526A8F00C2AD24 /* GMSStrokeStyle+Premium.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "GMSStrokeStyle+Premium.h"; sourceTree = ""; }; 217 | 8A7107FD26526A8F00C2AD24 /* GMSUISettings.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSUISettings.h; sourceTree = ""; }; 218 | 8A7107FE26526A8F00C2AD24 /* GMSGeocoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSGeocoder.h; sourceTree = ""; }; 219 | 8A7107FF26526A8F00C2AD24 /* GMSCameraPosition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSCameraPosition.h; sourceTree = ""; }; 220 | 8A71080026526A8F00C2AD24 /* GMSMarker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSMarker.h; sourceTree = ""; }; 221 | 8A71080126526A8F00C2AD24 /* GMSMarkerLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSMarkerLayer.h; sourceTree = ""; }; 222 | 8A71080226526A8F00C2AD24 /* GMSIndoorDisplay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSIndoorDisplay.h; sourceTree = ""; }; 223 | 8A71080326526A8F00C2AD24 /* GMSSyncTileLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSSyncTileLayer.h; sourceTree = ""; }; 224 | 8A71080426526A8F00C2AD24 /* GMSProjection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSProjection.h; sourceTree = ""; }; 225 | 8A71080526526A8F00C2AD24 /* GMSURLTileLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSURLTileLayer.h; sourceTree = ""; }; 226 | 8A71080626526A8F00C2AD24 /* GMSPanoramaLink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanoramaLink.h; sourceTree = ""; }; 227 | 8A71080726526A8F00C2AD24 /* GMSPanoramaLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanoramaLayer.h; sourceTree = ""; }; 228 | 8A71080826526A8F00C2AD24 /* GMSAccessibilityLabels.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAccessibilityLabels.h; sourceTree = ""; }; 229 | 8A71080926526A9000C2AD24 /* GMSPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPolygon.h; sourceTree = ""; }; 230 | 8A71080A26526A9000C2AD24 /* GMSPanoramaCameraUpdate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPanoramaCameraUpdate.h; sourceTree = ""; }; 231 | 8A71080B26526A9000C2AD24 /* GMSMapView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSMapView.h; sourceTree = ""; }; 232 | 8A71080C26526A9000C2AD24 /* GMSOverlayLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSOverlayLayer.h; sourceTree = ""; }; 233 | 8A71080D26526A9000C2AD24 /* GMSCALayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSCALayer.h; sourceTree = ""; }; 234 | 8A71083F26526AE800C2AD24 /* GooglePlaces.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GooglePlaces.h; sourceTree = ""; }; 235 | 8A71084026526AE800C2AD24 /* GMSPlacesDeprecationUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlacesDeprecationUtils.h; sourceTree = ""; }; 236 | 8A71084126526AE900C2AD24 /* GMSPlaceLocationOptions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlaceLocationOptions.h; sourceTree = ""; }; 237 | 8A71084226526AE900C2AD24 /* GMSPlusCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlusCode.h; sourceTree = ""; }; 238 | 8A71084326526AE900C2AD24 /* GMSPlaceViewportInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlaceViewportInfo.h; sourceTree = ""; }; 239 | 8A71084426526AE900C2AD24 /* GMSAutocompletePrediction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompletePrediction.h; sourceTree = ""; }; 240 | 8A71084526526AE900C2AD24 /* GMSAutocompleteFetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompleteFetcher.h; sourceTree = ""; }; 241 | 8A71084626526AE900C2AD24 /* GMSAutocompleteSessionToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompleteSessionToken.h; sourceTree = ""; }; 242 | 8A71084726526AE900C2AD24 /* GMSAutocompleteTableDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompleteTableDataSource.h; sourceTree = ""; }; 243 | 8A71084826526AE900C2AD24 /* GMSAutocompleteMatchFragment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompleteMatchFragment.h; sourceTree = ""; }; 244 | 8A71084926526AE900C2AD24 /* GMSPlaceLikelihoodList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlaceLikelihoodList.h; sourceTree = ""; }; 245 | 8A71084A26526AE900C2AD24 /* GMSPlacePhotoMetadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlacePhotoMetadata.h; sourceTree = ""; }; 246 | 8A71084B26526AE900C2AD24 /* GMSOpeningHours.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSOpeningHours.h; sourceTree = ""; }; 247 | 8A71084C26526AE900C2AD24 /* GMSPlacePhotoMetadataList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlacePhotoMetadataList.h; sourceTree = ""; }; 248 | 8A71084D26526AE900C2AD24 /* GMSPlacesClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlacesClient.h; sourceTree = ""; }; 249 | 8A71084E26526AE900C2AD24 /* GMSPlaceFieldMask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlaceFieldMask.h; sourceTree = ""; }; 250 | 8A71084F26526AE900C2AD24 /* GMSPlaceTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlaceTypes.h; sourceTree = ""; }; 251 | 8A71085026526AE900C2AD24 /* GMSAutocompleteResultsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompleteResultsViewController.h; sourceTree = ""; }; 252 | 8A71085126526AE900C2AD24 /* GMSAutocompleteFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompleteFilter.h; sourceTree = ""; }; 253 | 8A71085226526AE900C2AD24 /* GMSAddressComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAddressComponent.h; sourceTree = ""; }; 254 | 8A71085326526AE900C2AD24 /* GMSPlace.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlace.h; sourceTree = ""; }; 255 | 8A71085426526AE900C2AD24 /* GMSPlaceLikelihood.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlaceLikelihood.h; sourceTree = ""; }; 256 | 8A71085526526AE900C2AD24 /* GMSAutocompleteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSAutocompleteViewController.h; sourceTree = ""; }; 257 | 8A71085626526AE900C2AD24 /* GMSPlacesErrors.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GMSPlacesErrors.h; sourceTree = ""; }; 258 | 8A8C8EEA25387A0C00F5C247 /* GoogleMaps.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GoogleMaps.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 259 | 8A8C8EEE25387A0C00F5C247 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 260 | 8A8C8EFC25387A3E00F5C247 /* GoogleMapsBase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GoogleMapsBase.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 261 | 8A8C8EFF25387A3E00F5C247 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 262 | 8A8C8F0B25387A4B00F5C247 /* GoogleMapsCore.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GoogleMapsCore.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 263 | 8A8C8F0E25387A4B00F5C247 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 264 | 8A8C8F1B25387A5800F5C247 /* GoogleMapsM4B.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GoogleMapsM4B.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 265 | 8A8C8F1E25387A5800F5C247 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 266 | 8A8C8F2C25387A7C00F5C247 /* GooglePlaces.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GooglePlaces.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 267 | 8A8C8F2F25387A7C00F5C247 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 268 | /* End PBXFileReference section */ 269 | 270 | /* Begin PBXFrameworksBuildPhase section */ 271 | 8A8C8EE725387A0C00F5C247 /* Frameworks */ = { 272 | isa = PBXFrameworksBuildPhase; 273 | buildActionMask = 2147483647; 274 | files = ( 275 | 8A6641D425398415000E9321 /* libz.tbd in Frameworks */, 276 | 8A6641CE25398410000E9321 /* libc++.tbd in Frameworks */, 277 | 8A6641BE25398406000E9321 /* CoreImage.framework in Frameworks */, 278 | 8A6641B8253983F6000E9321 /* QuartzCore.framework in Frameworks */, 279 | 8A6641B2253983ED000E9321 /* ImageIO.framework in Frameworks */, 280 | 8A66416925398367000E9321 /* CoreGraphics.framework in Frameworks */, 281 | 8A66418E253983AA000E9321 /* SystemConfiguration.framework in Frameworks */, 282 | 8A6641872539839E000E9321 /* CoreLocation.framework in Frameworks */, 283 | 8A66418625398396000E9321 /* CoreTelephony.framework in Frameworks */, 284 | 8A66417F2539838B000E9321 /* CoreData.framework in Frameworks */, 285 | 8A66417825398383000E9321 /* OpenGLES.framework in Frameworks */, 286 | 8A66417125398376000E9321 /* CoreText.framework in Frameworks */, 287 | 8A66417025398371000E9321 /* GLKit.framework in Frameworks */, 288 | 8A66415625398342000E9321 /* UIKit.framework in Frameworks */, 289 | 8A6641112539828D000E9321 /* Foundation.framework in Frameworks */, 290 | 8A6640BB253980A2000E9321 /* GoogleMapsBase.framework in Frameworks */, 291 | 8A6640EE2539820E000E9321 /* GoogleMaps in Frameworks */, 292 | 8A66410A2539826E000E9321 /* GoogleMapsCore in Frameworks */, 293 | ); 294 | runOnlyForDeploymentPostprocessing = 0; 295 | }; 296 | 8A8C8EF925387A3E00F5C247 /* Frameworks */ = { 297 | isa = PBXFrameworksBuildPhase; 298 | buildActionMask = 2147483647; 299 | files = ( 300 | 8A66415025398315000E9321 /* libz.tbd in Frameworks */, 301 | 8A66414925398310000E9321 /* libc++.tbd in Frameworks */, 302 | 8A66413E25398302000E9321 /* CoreText.framework in Frameworks */, 303 | 8A08AD65253999DB0078DE66 /* QuartzCore.framework in Frameworks */, 304 | 8A66413C253982FB000E9321 /* Security.framework in Frameworks */, 305 | 8A664135253982F1000E9321 /* CoreTelephony.framework in Frameworks */, 306 | 8A664127253982D9000E9321 /* CoreLocation.framework in Frameworks */, 307 | 8A664125253982D1000E9321 /* CoreGraphics.framework in Frameworks */, 308 | 8A66411E253982C0000E9321 /* UIKit.framework in Frameworks */, 309 | 8A664117253982B6000E9321 /* Foundation.framework in Frameworks */, 310 | 8A66408B25397EC3000E9321 /* GoogleMapsBase in Frameworks */, 311 | ); 312 | runOnlyForDeploymentPostprocessing = 0; 313 | }; 314 | 8A8C8F0825387A4B00F5C247 /* Frameworks */ = { 315 | isa = PBXFrameworksBuildPhase; 316 | buildActionMask = 2147483647; 317 | files = ( 318 | ); 319 | runOnlyForDeploymentPostprocessing = 0; 320 | }; 321 | 8A8C8F1825387A5800F5C247 /* Frameworks */ = { 322 | isa = PBXFrameworksBuildPhase; 323 | buildActionMask = 2147483647; 324 | files = ( 325 | 8A66421725398499000E9321 /* libc++.tbd in Frameworks */, 326 | 8A66421625398491000E9321 /* Foundation.framework in Frameworks */, 327 | 8A66409625397EF2000E9321 /* GoogleMapsM4B in Frameworks */, 328 | ); 329 | runOnlyForDeploymentPostprocessing = 0; 330 | }; 331 | 8A8C8F2925387A7C00F5C247 /* Frameworks */ = { 332 | isa = PBXFrameworksBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | 8A6642052539847A000E9321 /* libc++.tbd in Frameworks */, 336 | 8A6641FA25398472000E9321 /* QuartzCore.framework in Frameworks */, 337 | 8A6641F425398461000E9321 /* CoreLocation.framework in Frameworks */, 338 | 8A6641E825398452000E9321 /* CoreGraphics.framework in Frameworks */, 339 | 8A6641E225398447000E9321 /* UIKit.framework in Frameworks */, 340 | 8A6641E125398442000E9321 /* Foundation.framework in Frameworks */, 341 | 8A6641DA2539842E000E9321 /* GoogleMapsBase.framework in Frameworks */, 342 | 8A7107D926525FB000C2AD24 /* Security.framework in Frameworks */, 343 | 8A6640A125397EFE000E9321 /* GooglePlaces in Frameworks */, 344 | 8A7107DA26525FC000C2AD24 /* libz.tbd in Frameworks */, 345 | ); 346 | runOnlyForDeploymentPostprocessing = 0; 347 | }; 348 | /* End PBXFrameworksBuildPhase section */ 349 | 350 | /* Begin PBXGroup section */ 351 | 8A08ACA7253998F10078DE66 /* Headers */ = { 352 | isa = PBXGroup; 353 | children = ( 354 | 8A71080826526A8F00C2AD24 /* GMSAccessibilityLabels.h */, 355 | 8A7107EC26526A8F00C2AD24 /* GMSAddress.h */, 356 | 8A71080D26526A9000C2AD24 /* GMSCALayer.h */, 357 | 8A7107FF26526A8F00C2AD24 /* GMSCameraPosition.h */, 358 | 8A7107E326526A8E00C2AD24 /* GMSCameraUpdate.h */, 359 | 8A7107F326526A8F00C2AD24 /* GMSCircle.h */, 360 | 8A7107FB26526A8F00C2AD24 /* GMSCoordinateBounds+GoogleMaps.h */, 361 | 8A7107FE26526A8F00C2AD24 /* GMSGeocoder.h */, 362 | 8A7107DF26526A8E00C2AD24 /* GMSGeometryUtils.h */, 363 | 8A7107DE26526A8E00C2AD24 /* GMSGroundOverlay.h */, 364 | 8A7107DD26526A8E00C2AD24 /* GMSIndoorBuilding.h */, 365 | 8A71080226526A8F00C2AD24 /* GMSIndoorDisplay.h */, 366 | 8A7107F926526A8F00C2AD24 /* GMSIndoorLevel.h */, 367 | 8A7107E626526A8E00C2AD24 /* GMSMapID+Premium.h */, 368 | 8A7107F526526A8F00C2AD24 /* GMSMapLayer.h */, 369 | 8A7107F426526A8F00C2AD24 /* GMSMapStyle.h */, 370 | 8A71080B26526A9000C2AD24 /* GMSMapView.h */, 371 | 8A7107EF26526A8F00C2AD24 /* GMSMapView+Animation.h */, 372 | 8A7107E426526A8E00C2AD24 /* GMSMapView+Premium.h */, 373 | 8A71080026526A8F00C2AD24 /* GMSMarker.h */, 374 | 8A7107F726526A8F00C2AD24 /* GMSMarker+Premium.h */, 375 | 8A71080126526A8F00C2AD24 /* GMSMarkerLayer.h */, 376 | 8A7107E926526A8F00C2AD24 /* GMSMutablePath.h */, 377 | 8A7107E826526A8F00C2AD24 /* GMSOrientation.h */, 378 | 8A7107E026526A8E00C2AD24 /* GMSOverlay.h */, 379 | 8A71080C26526A9000C2AD24 /* GMSOverlayLayer.h */, 380 | 8A7107F626526A8F00C2AD24 /* GMSPanorama.h */, 381 | 8A7107EE26526A8F00C2AD24 /* GMSPanoramaCamera.h */, 382 | 8A71080A26526A9000C2AD24 /* GMSPanoramaCameraUpdate.h */, 383 | 8A71080726526A8F00C2AD24 /* GMSPanoramaLayer.h */, 384 | 8A71080626526A8F00C2AD24 /* GMSPanoramaLink.h */, 385 | 8A7107F226526A8F00C2AD24 /* GMSPanoramaService.h */, 386 | 8A7107F826526A8F00C2AD24 /* GMSPanoramaSource.h */, 387 | 8A7107E726526A8F00C2AD24 /* GMSPanoramaView.h */, 388 | 8A7107F026526A8F00C2AD24 /* GMSPath.h */, 389 | 8A71080926526A9000C2AD24 /* GMSPolygon.h */, 390 | 8A7107F126526A8F00C2AD24 /* GMSPolygonLayer.h */, 391 | 8A7107E526526A8E00C2AD24 /* GMSPolyline.h */, 392 | 8A71080426526A8F00C2AD24 /* GMSProjection.h */, 393 | 8A7107FA26526A8F00C2AD24 /* GMSServices.h */, 394 | 8A7107E126526A8E00C2AD24 /* GMSStampStyle+Premium.h */, 395 | 8A7107ED26526A8F00C2AD24 /* GMSStrokeStyle.h */, 396 | 8A7107FC26526A8F00C2AD24 /* GMSStrokeStyle+Premium.h */, 397 | 8A7107E226526A8E00C2AD24 /* GMSStyleSpan.h */, 398 | 8A71080326526A8F00C2AD24 /* GMSSyncTileLayer.h */, 399 | 8A7107EB26526A8F00C2AD24 /* GMSTileLayer.h */, 400 | 8A7107FD26526A8F00C2AD24 /* GMSUISettings.h */, 401 | 8A71080526526A8F00C2AD24 /* GMSURLTileLayer.h */, 402 | 8A7107EA26526A8F00C2AD24 /* GoogleMaps.h */, 403 | ); 404 | name = Headers; 405 | path = Carthage/Build/iOS/GoogleMaps.framework/Headers; 406 | sourceTree = SOURCE_ROOT; 407 | }; 408 | 8A08AD1B2539994E0078DE66 /* Headers */ = { 409 | isa = PBXGroup; 410 | children = ( 411 | 8A71085226526AE900C2AD24 /* GMSAddressComponent.h */, 412 | 8A71084526526AE900C2AD24 /* GMSAutocompleteFetcher.h */, 413 | 8A71085126526AE900C2AD24 /* GMSAutocompleteFilter.h */, 414 | 8A71084826526AE900C2AD24 /* GMSAutocompleteMatchFragment.h */, 415 | 8A71084426526AE900C2AD24 /* GMSAutocompletePrediction.h */, 416 | 8A71085026526AE900C2AD24 /* GMSAutocompleteResultsViewController.h */, 417 | 8A71084626526AE900C2AD24 /* GMSAutocompleteSessionToken.h */, 418 | 8A71084726526AE900C2AD24 /* GMSAutocompleteTableDataSource.h */, 419 | 8A71085526526AE900C2AD24 /* GMSAutocompleteViewController.h */, 420 | 8A71084B26526AE900C2AD24 /* GMSOpeningHours.h */, 421 | 8A71085326526AE900C2AD24 /* GMSPlace.h */, 422 | 8A71084E26526AE900C2AD24 /* GMSPlaceFieldMask.h */, 423 | 8A71085426526AE900C2AD24 /* GMSPlaceLikelihood.h */, 424 | 8A71084926526AE900C2AD24 /* GMSPlaceLikelihoodList.h */, 425 | 8A71084126526AE900C2AD24 /* GMSPlaceLocationOptions.h */, 426 | 8A71084A26526AE900C2AD24 /* GMSPlacePhotoMetadata.h */, 427 | 8A71084C26526AE900C2AD24 /* GMSPlacePhotoMetadataList.h */, 428 | 8A71084D26526AE900C2AD24 /* GMSPlacesClient.h */, 429 | 8A71084026526AE800C2AD24 /* GMSPlacesDeprecationUtils.h */, 430 | 8A71085626526AE900C2AD24 /* GMSPlacesErrors.h */, 431 | 8A71084F26526AE900C2AD24 /* GMSPlaceTypes.h */, 432 | 8A71084326526AE900C2AD24 /* GMSPlaceViewportInfo.h */, 433 | 8A71084226526AE900C2AD24 /* GMSPlusCode.h */, 434 | 8A71083F26526AE800C2AD24 /* GooglePlaces.h */, 435 | ); 436 | name = Headers; 437 | path = Carthage/Build/iOS/GooglePlaces.framework/Headers; 438 | sourceTree = SOURCE_ROOT; 439 | }; 440 | 8A663FE325397D2B000E9321 /* Modules */ = { 441 | isa = PBXGroup; 442 | children = ( 443 | 8A663FE425397D2B000E9321 /* module.modulemap */, 444 | ); 445 | name = Modules; 446 | path = Carthage/Build/iOS/GoogleMaps.framework/Modules; 447 | sourceTree = SOURCE_ROOT; 448 | }; 449 | 8A663FE525397D36000E9321 /* Resources */ = { 450 | isa = PBXGroup; 451 | children = ( 452 | 8A08AD0F253999110078DE66 /* GoogleMaps.bundle */, 453 | ); 454 | name = Resources; 455 | path = Carthage/Build/iOS/GoogleMaps.framework/Resources; 456 | sourceTree = SOURCE_ROOT; 457 | }; 458 | 8A663FF925397D6F000E9321 /* Headers */ = { 459 | isa = PBXGroup; 460 | children = ( 461 | 8A663FFA25397D6F000E9321 /* GMSDeprecationMacros.h */, 462 | 8A663FFB25397D6F000E9321 /* GoogleMapsBase.h */, 463 | 8A663FFC25397D6F000E9321 /* GMSCompatabilityMacros.h */, 464 | 8A663FFD25397D6F000E9321 /* GMSCoordinateBounds.h */, 465 | ); 466 | name = Headers; 467 | path = Carthage/Build/iOS/GoogleMapsBase.framework/Headers; 468 | sourceTree = SOURCE_ROOT; 469 | }; 470 | 8A663FFE25397D6F000E9321 /* Modules */ = { 471 | isa = PBXGroup; 472 | children = ( 473 | 8A663FFF25397D6F000E9321 /* module.modulemap */, 474 | ); 475 | name = Modules; 476 | path = Carthage/Build/iOS/GoogleMapsBase.framework/Modules; 477 | sourceTree = SOURCE_ROOT; 478 | }; 479 | 8A66400925397D7D000E9321 /* Modules */ = { 480 | isa = PBXGroup; 481 | children = ( 482 | 8A66400A25397D7D000E9321 /* module.modulemap */, 483 | ); 484 | name = Modules; 485 | path = Carthage/Build/iOS/GoogleMapsCore.framework/Modules; 486 | sourceTree = SOURCE_ROOT; 487 | }; 488 | 8A66401225397D90000E9321 /* Headers */ = { 489 | isa = PBXGroup; 490 | children = ( 491 | 8A66401325397D90000E9321 /* GoogleMaps.h */, 492 | ); 493 | name = Headers; 494 | path = Carthage/Build/iOS/GoogleMapsM4B.framework/Headers; 495 | sourceTree = SOURCE_ROOT; 496 | }; 497 | 8A66401425397D90000E9321 /* Modules */ = { 498 | isa = PBXGroup; 499 | children = ( 500 | 8A66401525397D90000E9321 /* module.modulemap */, 501 | ); 502 | name = Modules; 503 | path = Carthage/Build/iOS/GoogleMapsM4B.framework/Modules; 504 | sourceTree = SOURCE_ROOT; 505 | }; 506 | 8A66401E25397DA0000E9321 /* Modules */ = { 507 | isa = PBXGroup; 508 | children = ( 509 | 8A66401F25397DA0000E9321 /* module.modulemap */, 510 | ); 511 | name = Modules; 512 | path = Carthage/Build/iOS/GooglePlaces.framework/Modules; 513 | sourceTree = SOURCE_ROOT; 514 | }; 515 | 8A66403A25397DA0000E9321 /* Resources */ = { 516 | isa = PBXGroup; 517 | children = ( 518 | 8A08AD542539996C0078DE66 /* GooglePlaces.bundle */, 519 | ); 520 | name = Resources; 521 | path = Carthage/Build/iOS/GooglePlaces.framework/Resources; 522 | sourceTree = SOURCE_ROOT; 523 | }; 524 | 8A66407425397E8C000E9321 /* Frameworks */ = { 525 | isa = PBXGroup; 526 | children = ( 527 | 8A664196253983BC000E9321 /* CoreImage.framework */, 528 | 8A66418F253983B1000E9321 /* ImageIO.framework */, 529 | 8A66418D253983AA000E9321 /* SystemConfiguration.framework */, 530 | 8A66417E2539838B000E9321 /* CoreData.framework */, 531 | 8A66417725398383000E9321 /* OpenGLES.framework */, 532 | 8A66416F25398371000E9321 /* GLKit.framework */, 533 | 8A66415C2539834F000E9321 /* QuartzCore.framework */, 534 | 8A66414F25398315000E9321 /* libz.tbd */, 535 | 8A66413D25398302000E9321 /* CoreText.framework */, 536 | 8A66413B253982FB000E9321 /* Security.framework */, 537 | 8A664134253982F1000E9321 /* CoreTelephony.framework */, 538 | 8A66412D253982E8000E9321 /* libc++.tbd */, 539 | 8A664126253982D9000E9321 /* CoreLocation.framework */, 540 | 8A664124253982D0000E9321 /* CoreGraphics.framework */, 541 | 8A66411D253982C0000E9321 /* UIKit.framework */, 542 | 8A6641102539828D000E9321 /* Foundation.framework */, 543 | ); 544 | name = Frameworks; 545 | sourceTree = ""; 546 | }; 547 | 8A8C8EE025387A0C00F5C247 = { 548 | isa = PBXGroup; 549 | children = ( 550 | 8A8C8EEC25387A0C00F5C247 /* GoogleMaps */, 551 | 8A8C8EFD25387A3E00F5C247 /* GoogleMapsBase */, 552 | 8A8C8F0C25387A4B00F5C247 /* GoogleMapsCore */, 553 | 8A8C8F1C25387A5800F5C247 /* GoogleMapsM4B */, 554 | 8A8C8F2D25387A7C00F5C247 /* GooglePlaces */, 555 | 8A8C8EEB25387A0C00F5C247 /* Products */, 556 | 8A66407425397E8C000E9321 /* Frameworks */, 557 | ); 558 | sourceTree = ""; 559 | }; 560 | 8A8C8EEB25387A0C00F5C247 /* Products */ = { 561 | isa = PBXGroup; 562 | children = ( 563 | 8A8C8EEA25387A0C00F5C247 /* GoogleMaps.framework */, 564 | 8A8C8EFC25387A3E00F5C247 /* GoogleMapsBase.framework */, 565 | 8A8C8F0B25387A4B00F5C247 /* GoogleMapsCore.framework */, 566 | 8A8C8F1B25387A5800F5C247 /* GoogleMapsM4B.framework */, 567 | 8A8C8F2C25387A7C00F5C247 /* GooglePlaces.framework */, 568 | ); 569 | name = Products; 570 | sourceTree = ""; 571 | }; 572 | 8A8C8EEC25387A0C00F5C247 /* GoogleMaps */ = { 573 | isa = PBXGroup; 574 | children = ( 575 | 8A8C8EEE25387A0C00F5C247 /* Info.plist */, 576 | 8A663F7D25397CE4000E9321 /* GoogleMaps */, 577 | 8A08ACA7253998F10078DE66 /* Headers */, 578 | 8A663FE325397D2B000E9321 /* Modules */, 579 | 8A663FE525397D36000E9321 /* Resources */, 580 | ); 581 | path = GoogleMaps; 582 | sourceTree = ""; 583 | }; 584 | 8A8C8EFD25387A3E00F5C247 /* GoogleMapsBase */ = { 585 | isa = PBXGroup; 586 | children = ( 587 | 8A8C8EFF25387A3E00F5C247 /* Info.plist */, 588 | 8A663FF225397D68000E9321 /* GoogleMapsBase */, 589 | 8A663FF925397D6F000E9321 /* Headers */, 590 | 8A663FFE25397D6F000E9321 /* Modules */, 591 | ); 592 | path = GoogleMapsBase; 593 | sourceTree = ""; 594 | }; 595 | 8A8C8F0C25387A4B00F5C247 /* GoogleMapsCore */ = { 596 | isa = PBXGroup; 597 | children = ( 598 | 8A8C8F0E25387A4B00F5C247 /* Info.plist */, 599 | 8A66400B25397D7D000E9321 /* GoogleMapsCore */, 600 | 8A66400925397D7D000E9321 /* Modules */, 601 | ); 602 | path = GoogleMapsCore; 603 | sourceTree = ""; 604 | }; 605 | 8A8C8F1C25387A5800F5C247 /* GoogleMapsM4B */ = { 606 | isa = PBXGroup; 607 | children = ( 608 | 8A8C8F1E25387A5800F5C247 /* Info.plist */, 609 | 8A66401625397D90000E9321 /* GoogleMapsM4B */, 610 | 8A66401225397D90000E9321 /* Headers */, 611 | 8A66401425397D90000E9321 /* Modules */, 612 | ); 613 | path = GoogleMapsM4B; 614 | sourceTree = ""; 615 | }; 616 | 8A8C8F2D25387A7C00F5C247 /* GooglePlaces */ = { 617 | isa = PBXGroup; 618 | children = ( 619 | 8A8C8F2F25387A7C00F5C247 /* Info.plist */, 620 | 8A66403925397DA0000E9321 /* GooglePlaces */, 621 | 8A08AD1B2539994E0078DE66 /* Headers */, 622 | 8A66401E25397DA0000E9321 /* Modules */, 623 | 8A66403A25397DA0000E9321 /* Resources */, 624 | ); 625 | path = GooglePlaces; 626 | sourceTree = ""; 627 | }; 628 | /* End PBXGroup section */ 629 | 630 | /* Begin PBXHeadersBuildPhase section */ 631 | 8A8C8EE525387A0C00F5C247 /* Headers */ = { 632 | isa = PBXHeadersBuildPhase; 633 | buildActionMask = 2147483647; 634 | files = ( 635 | 8A71082B26526A9000C2AD24 /* GMSServices.h in Headers */, 636 | 8A71083526526A9000C2AD24 /* GMSProjection.h in Headers */, 637 | 8A71082826526A9000C2AD24 /* GMSMarker+Premium.h in Headers */, 638 | 8A71083726526A9000C2AD24 /* GMSPanoramaLink.h in Headers */, 639 | 8A71083326526A9000C2AD24 /* GMSIndoorDisplay.h in Headers */, 640 | 8A71083126526A9000C2AD24 /* GMSMarker.h in Headers */, 641 | 8A71081E26526A9000C2AD24 /* GMSStrokeStyle.h in Headers */, 642 | 8A71082A26526A9000C2AD24 /* GMSIndoorLevel.h in Headers */, 643 | 8A71082226526A9000C2AD24 /* GMSPolygonLayer.h in Headers */, 644 | 8A71081226526A9000C2AD24 /* GMSStampStyle+Premium.h in Headers */, 645 | 8A71083426526A9000C2AD24 /* GMSSyncTileLayer.h in Headers */, 646 | 8A71082326526A9000C2AD24 /* GMSPanoramaService.h in Headers */, 647 | 8A71081026526A9000C2AD24 /* GMSGeometryUtils.h in Headers */, 648 | 8A71082D26526A9000C2AD24 /* GMSStrokeStyle+Premium.h in Headers */, 649 | 8A71081726526A9000C2AD24 /* GMSMapID+Premium.h in Headers */, 650 | 8A71082E26526A9000C2AD24 /* GMSUISettings.h in Headers */, 651 | 8A71081826526A9000C2AD24 /* GMSPanoramaView.h in Headers */, 652 | 8A71080F26526A9000C2AD24 /* GMSGroundOverlay.h in Headers */, 653 | 8A71081A26526A9000C2AD24 /* GMSMutablePath.h in Headers */, 654 | 8A71083B26526A9000C2AD24 /* GMSPanoramaCameraUpdate.h in Headers */, 655 | 8A71082526526A9000C2AD24 /* GMSMapStyle.h in Headers */, 656 | 8A71080E26526A9000C2AD24 /* GMSIndoorBuilding.h in Headers */, 657 | 8A71083C26526A9000C2AD24 /* GMSMapView.h in Headers */, 658 | 8A71083226526A9000C2AD24 /* GMSMarkerLayer.h in Headers */, 659 | 8A71082926526A9000C2AD24 /* GMSPanoramaSource.h in Headers */, 660 | 8A71081626526A9000C2AD24 /* GMSPolyline.h in Headers */, 661 | 8A71081526526A9000C2AD24 /* GMSMapView+Premium.h in Headers */, 662 | 8A71082026526A9000C2AD24 /* GMSMapView+Animation.h in Headers */, 663 | 8A71082F26526A9000C2AD24 /* GMSGeocoder.h in Headers */, 664 | 8A71082626526A9000C2AD24 /* GMSMapLayer.h in Headers */, 665 | 8A71081326526A9000C2AD24 /* GMSStyleSpan.h in Headers */, 666 | 8A71081B26526A9000C2AD24 /* GoogleMaps.h in Headers */, 667 | 8A71081926526A9000C2AD24 /* GMSOrientation.h in Headers */, 668 | 8A71081126526A9000C2AD24 /* GMSOverlay.h in Headers */, 669 | 8A71083A26526A9000C2AD24 /* GMSPolygon.h in Headers */, 670 | 8A71083926526A9000C2AD24 /* GMSAccessibilityLabels.h in Headers */, 671 | 8A71083E26526A9000C2AD24 /* GMSCALayer.h in Headers */, 672 | 8A71081F26526A9000C2AD24 /* GMSPanoramaCamera.h in Headers */, 673 | 8A71082426526A9000C2AD24 /* GMSCircle.h in Headers */, 674 | 8A71081426526A9000C2AD24 /* GMSCameraUpdate.h in Headers */, 675 | 8A71082C26526A9000C2AD24 /* GMSCoordinateBounds+GoogleMaps.h in Headers */, 676 | 8A71081C26526A9000C2AD24 /* GMSTileLayer.h in Headers */, 677 | 8A71083026526A9000C2AD24 /* GMSCameraPosition.h in Headers */, 678 | 8A71083626526A9000C2AD24 /* GMSURLTileLayer.h in Headers */, 679 | 8A71081D26526A9000C2AD24 /* GMSAddress.h in Headers */, 680 | 8A71082126526A9000C2AD24 /* GMSPath.h in Headers */, 681 | 8A71083D26526A9000C2AD24 /* GMSOverlayLayer.h in Headers */, 682 | 8A71083826526A9000C2AD24 /* GMSPanoramaLayer.h in Headers */, 683 | 8A71082726526A9000C2AD24 /* GMSPanorama.h in Headers */, 684 | ); 685 | runOnlyForDeploymentPostprocessing = 0; 686 | }; 687 | 8A8C8EF725387A3E00F5C247 /* Headers */ = { 688 | isa = PBXHeadersBuildPhase; 689 | buildActionMask = 2147483647; 690 | files = ( 691 | 8A66400225397D6F000E9321 /* GMSCompatabilityMacros.h in Headers */, 692 | 8A66400325397D6F000E9321 /* GMSCoordinateBounds.h in Headers */, 693 | 8A66400025397D6F000E9321 /* GMSDeprecationMacros.h in Headers */, 694 | 8A66400125397D6F000E9321 /* GoogleMapsBase.h in Headers */, 695 | ); 696 | runOnlyForDeploymentPostprocessing = 0; 697 | }; 698 | 8A8C8F0625387A4B00F5C247 /* Headers */ = { 699 | isa = PBXHeadersBuildPhase; 700 | buildActionMask = 2147483647; 701 | files = ( 702 | ); 703 | runOnlyForDeploymentPostprocessing = 0; 704 | }; 705 | 8A8C8F1625387A5800F5C247 /* Headers */ = { 706 | isa = PBXHeadersBuildPhase; 707 | buildActionMask = 2147483647; 708 | files = ( 709 | 8A66401725397D90000E9321 /* GoogleMaps.h in Headers */, 710 | ); 711 | runOnlyForDeploymentPostprocessing = 0; 712 | }; 713 | 8A8C8F2725387A7C00F5C247 /* Headers */ = { 714 | isa = PBXHeadersBuildPhase; 715 | buildActionMask = 2147483647; 716 | files = ( 717 | 8A71086226526AE900C2AD24 /* GMSPlacePhotoMetadata.h in Headers */, 718 | 8A71085726526AE900C2AD24 /* GooglePlaces.h in Headers */, 719 | 8A71085E26526AE900C2AD24 /* GMSAutocompleteSessionToken.h in Headers */, 720 | 8A71086326526AE900C2AD24 /* GMSOpeningHours.h in Headers */, 721 | 8A71086726526AE900C2AD24 /* GMSPlaceTypes.h in Headers */, 722 | 8A71086426526AE900C2AD24 /* GMSPlacePhotoMetadataList.h in Headers */, 723 | 8A71086D26526AE900C2AD24 /* GMSAutocompleteViewController.h in Headers */, 724 | 8A71086826526AE900C2AD24 /* GMSAutocompleteResultsViewController.h in Headers */, 725 | 8A71086626526AE900C2AD24 /* GMSPlaceFieldMask.h in Headers */, 726 | 8A71086B26526AE900C2AD24 /* GMSPlace.h in Headers */, 727 | 8A71085A26526AE900C2AD24 /* GMSPlusCode.h in Headers */, 728 | 8A71085B26526AE900C2AD24 /* GMSPlaceViewportInfo.h in Headers */, 729 | 8A71085926526AE900C2AD24 /* GMSPlaceLocationOptions.h in Headers */, 730 | 8A71086926526AE900C2AD24 /* GMSAutocompleteFilter.h in Headers */, 731 | 8A71085D26526AE900C2AD24 /* GMSAutocompleteFetcher.h in Headers */, 732 | 8A71086C26526AE900C2AD24 /* GMSPlaceLikelihood.h in Headers */, 733 | 8A71086126526AE900C2AD24 /* GMSPlaceLikelihoodList.h in Headers */, 734 | 8A71085826526AE900C2AD24 /* GMSPlacesDeprecationUtils.h in Headers */, 735 | 8A71086A26526AE900C2AD24 /* GMSAddressComponent.h in Headers */, 736 | 8A71086E26526AE900C2AD24 /* GMSPlacesErrors.h in Headers */, 737 | 8A71085C26526AE900C2AD24 /* GMSAutocompletePrediction.h in Headers */, 738 | 8A71086026526AE900C2AD24 /* GMSAutocompleteMatchFragment.h in Headers */, 739 | 8A71085F26526AE900C2AD24 /* GMSAutocompleteTableDataSource.h in Headers */, 740 | 8A71086526526AE900C2AD24 /* GMSPlacesClient.h in Headers */, 741 | ); 742 | runOnlyForDeploymentPostprocessing = 0; 743 | }; 744 | /* End PBXHeadersBuildPhase section */ 745 | 746 | /* Begin PBXNativeTarget section */ 747 | 8A8C8EE925387A0C00F5C247 /* GoogleMaps */ = { 748 | isa = PBXNativeTarget; 749 | buildConfigurationList = 8A8C8EF225387A0D00F5C247 /* Build configuration list for PBXNativeTarget "GoogleMaps" */; 750 | buildPhases = ( 751 | 8A8C8EE525387A0C00F5C247 /* Headers */, 752 | 8A8C8EE625387A0C00F5C247 /* Sources */, 753 | 8A8C8EE725387A0C00F5C247 /* Frameworks */, 754 | 8A8C8EE825387A0C00F5C247 /* Resources */, 755 | ); 756 | buildRules = ( 757 | ); 758 | dependencies = ( 759 | 8A6640D125398123000E9321 /* PBXTargetDependency */, 760 | 8A6640D325398123000E9321 /* PBXTargetDependency */, 761 | ); 762 | name = GoogleMaps; 763 | productName = GoogleMaps; 764 | productReference = 8A8C8EEA25387A0C00F5C247 /* GoogleMaps.framework */; 765 | productType = "com.apple.product-type.framework"; 766 | }; 767 | 8A8C8EFB25387A3E00F5C247 /* GoogleMapsBase */ = { 768 | isa = PBXNativeTarget; 769 | buildConfigurationList = 8A8C8F0125387A3E00F5C247 /* Build configuration list for PBXNativeTarget "GoogleMapsBase" */; 770 | buildPhases = ( 771 | 8A8C8EF725387A3E00F5C247 /* Headers */, 772 | 8A8C8EF825387A3E00F5C247 /* Sources */, 773 | 8A8C8EF925387A3E00F5C247 /* Frameworks */, 774 | 8A8C8EFA25387A3E00F5C247 /* Resources */, 775 | ); 776 | buildRules = ( 777 | ); 778 | dependencies = ( 779 | ); 780 | name = GoogleMapsBase; 781 | productName = GoogleMapsBase; 782 | productReference = 8A8C8EFC25387A3E00F5C247 /* GoogleMapsBase.framework */; 783 | productType = "com.apple.product-type.framework"; 784 | }; 785 | 8A8C8F0A25387A4B00F5C247 /* GoogleMapsCore */ = { 786 | isa = PBXNativeTarget; 787 | buildConfigurationList = 8A8C8F1025387A4B00F5C247 /* Build configuration list for PBXNativeTarget "GoogleMapsCore" */; 788 | buildPhases = ( 789 | 8A8C8F0625387A4B00F5C247 /* Headers */, 790 | 8A8C8F0725387A4B00F5C247 /* Sources */, 791 | 8A8C8F0825387A4B00F5C247 /* Frameworks */, 792 | 8A8C8F0925387A4B00F5C247 /* Resources */, 793 | ); 794 | buildRules = ( 795 | ); 796 | dependencies = ( 797 | ); 798 | name = GoogleMapsCore; 799 | productName = GoogleMapsCore; 800 | productReference = 8A8C8F0B25387A4B00F5C247 /* GoogleMapsCore.framework */; 801 | productType = "com.apple.product-type.framework"; 802 | }; 803 | 8A8C8F1A25387A5800F5C247 /* GoogleMapsM4B */ = { 804 | isa = PBXNativeTarget; 805 | buildConfigurationList = 8A8C8F2025387A5800F5C247 /* Build configuration list for PBXNativeTarget "GoogleMapsM4B" */; 806 | buildPhases = ( 807 | 8A8C8F1625387A5800F5C247 /* Headers */, 808 | 8A8C8F1725387A5800F5C247 /* Sources */, 809 | 8A8C8F1825387A5800F5C247 /* Frameworks */, 810 | 8A8C8F1925387A5800F5C247 /* Resources */, 811 | ); 812 | buildRules = ( 813 | ); 814 | dependencies = ( 815 | ); 816 | name = GoogleMapsM4B; 817 | productName = GoogleMapsM4B; 818 | productReference = 8A8C8F1B25387A5800F5C247 /* GoogleMapsM4B.framework */; 819 | productType = "com.apple.product-type.framework"; 820 | }; 821 | 8A8C8F2B25387A7C00F5C247 /* GooglePlaces */ = { 822 | isa = PBXNativeTarget; 823 | buildConfigurationList = 8A8C8F3125387A7C00F5C247 /* Build configuration list for PBXNativeTarget "GooglePlaces" */; 824 | buildPhases = ( 825 | 8A8C8F2725387A7C00F5C247 /* Headers */, 826 | 8A8C8F2825387A7C00F5C247 /* Sources */, 827 | 8A8C8F2925387A7C00F5C247 /* Frameworks */, 828 | 8A8C8F2A25387A7C00F5C247 /* Resources */, 829 | ); 830 | buildRules = ( 831 | ); 832 | dependencies = ( 833 | ); 834 | name = GooglePlaces; 835 | productName = GooglePlaces; 836 | productReference = 8A8C8F2C25387A7C00F5C247 /* GooglePlaces.framework */; 837 | productType = "com.apple.product-type.framework"; 838 | }; 839 | /* End PBXNativeTarget section */ 840 | 841 | /* Begin PBXProject section */ 842 | 8A8C8EE125387A0C00F5C247 /* Project object */ = { 843 | isa = PBXProject; 844 | attributes = { 845 | LastUpgradeCheck = 1250; 846 | TargetAttributes = { 847 | 8A8C8EE925387A0C00F5C247 = { 848 | CreatedOnToolsVersion = 12.0.1; 849 | }; 850 | 8A8C8EFB25387A3E00F5C247 = { 851 | CreatedOnToolsVersion = 12.0.1; 852 | }; 853 | 8A8C8F0A25387A4B00F5C247 = { 854 | CreatedOnToolsVersion = 12.0.1; 855 | }; 856 | 8A8C8F1A25387A5800F5C247 = { 857 | CreatedOnToolsVersion = 12.0.1; 858 | }; 859 | 8A8C8F2B25387A7C00F5C247 = { 860 | CreatedOnToolsVersion = 12.0.1; 861 | }; 862 | }; 863 | }; 864 | buildConfigurationList = 8A8C8EE425387A0C00F5C247 /* Build configuration list for PBXProject "GoogleMaps" */; 865 | compatibilityVersion = "Xcode 9.3"; 866 | developmentRegion = en; 867 | hasScannedForEncodings = 0; 868 | knownRegions = ( 869 | en, 870 | Base, 871 | ); 872 | mainGroup = 8A8C8EE025387A0C00F5C247; 873 | productRefGroup = 8A8C8EEB25387A0C00F5C247 /* Products */; 874 | projectDirPath = ""; 875 | projectRoot = ""; 876 | targets = ( 877 | 8A8C8EE925387A0C00F5C247 /* GoogleMaps */, 878 | 8A8C8EFB25387A3E00F5C247 /* GoogleMapsBase */, 879 | 8A8C8F0A25387A4B00F5C247 /* GoogleMapsCore */, 880 | 8A8C8F1A25387A5800F5C247 /* GoogleMapsM4B */, 881 | 8A8C8F2B25387A7C00F5C247 /* GooglePlaces */, 882 | ); 883 | }; 884 | /* End PBXProject section */ 885 | 886 | /* Begin PBXResourcesBuildPhase section */ 887 | 8A8C8EE825387A0C00F5C247 /* Resources */ = { 888 | isa = PBXResourcesBuildPhase; 889 | buildActionMask = 2147483647; 890 | files = ( 891 | 8A08AD10253999110078DE66 /* GoogleMaps.bundle in Resources */, 892 | ); 893 | runOnlyForDeploymentPostprocessing = 0; 894 | }; 895 | 8A8C8EFA25387A3E00F5C247 /* Resources */ = { 896 | isa = PBXResourcesBuildPhase; 897 | buildActionMask = 2147483647; 898 | files = ( 899 | ); 900 | runOnlyForDeploymentPostprocessing = 0; 901 | }; 902 | 8A8C8F0925387A4B00F5C247 /* Resources */ = { 903 | isa = PBXResourcesBuildPhase; 904 | buildActionMask = 2147483647; 905 | files = ( 906 | ); 907 | runOnlyForDeploymentPostprocessing = 0; 908 | }; 909 | 8A8C8F1925387A5800F5C247 /* Resources */ = { 910 | isa = PBXResourcesBuildPhase; 911 | buildActionMask = 2147483647; 912 | files = ( 913 | ); 914 | runOnlyForDeploymentPostprocessing = 0; 915 | }; 916 | 8A8C8F2A25387A7C00F5C247 /* Resources */ = { 917 | isa = PBXResourcesBuildPhase; 918 | buildActionMask = 2147483647; 919 | files = ( 920 | 8A08AD552539996C0078DE66 /* GooglePlaces.bundle in Resources */, 921 | ); 922 | runOnlyForDeploymentPostprocessing = 0; 923 | }; 924 | /* End PBXResourcesBuildPhase section */ 925 | 926 | /* Begin PBXSourcesBuildPhase section */ 927 | 8A8C8EE625387A0C00F5C247 /* Sources */ = { 928 | isa = PBXSourcesBuildPhase; 929 | buildActionMask = 2147483647; 930 | files = ( 931 | ); 932 | runOnlyForDeploymentPostprocessing = 0; 933 | }; 934 | 8A8C8EF825387A3E00F5C247 /* Sources */ = { 935 | isa = PBXSourcesBuildPhase; 936 | buildActionMask = 2147483647; 937 | files = ( 938 | ); 939 | runOnlyForDeploymentPostprocessing = 0; 940 | }; 941 | 8A8C8F0725387A4B00F5C247 /* Sources */ = { 942 | isa = PBXSourcesBuildPhase; 943 | buildActionMask = 2147483647; 944 | files = ( 945 | ); 946 | runOnlyForDeploymentPostprocessing = 0; 947 | }; 948 | 8A8C8F1725387A5800F5C247 /* Sources */ = { 949 | isa = PBXSourcesBuildPhase; 950 | buildActionMask = 2147483647; 951 | files = ( 952 | ); 953 | runOnlyForDeploymentPostprocessing = 0; 954 | }; 955 | 8A8C8F2825387A7C00F5C247 /* Sources */ = { 956 | isa = PBXSourcesBuildPhase; 957 | buildActionMask = 2147483647; 958 | files = ( 959 | ); 960 | runOnlyForDeploymentPostprocessing = 0; 961 | }; 962 | /* End PBXSourcesBuildPhase section */ 963 | 964 | /* Begin PBXTargetDependency section */ 965 | 8A6640D125398123000E9321 /* PBXTargetDependency */ = { 966 | isa = PBXTargetDependency; 967 | target = 8A8C8EFB25387A3E00F5C247 /* GoogleMapsBase */; 968 | targetProxy = 8A6640D025398123000E9321 /* PBXContainerItemProxy */; 969 | }; 970 | 8A6640D325398123000E9321 /* PBXTargetDependency */ = { 971 | isa = PBXTargetDependency; 972 | target = 8A8C8F0A25387A4B00F5C247 /* GoogleMapsCore */; 973 | targetProxy = 8A6640D225398123000E9321 /* PBXContainerItemProxy */; 974 | }; 975 | /* End PBXTargetDependency section */ 976 | 977 | /* Begin XCBuildConfiguration section */ 978 | 8A66422225398783000E9321 /* Simulator Release */ = { 979 | isa = XCBuildConfiguration; 980 | buildSettings = { 981 | ALWAYS_SEARCH_USER_PATHS = NO; 982 | CLANG_ANALYZER_NONNULL = YES; 983 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 984 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 985 | CLANG_CXX_LIBRARY = "libc++"; 986 | CLANG_ENABLE_MODULES = YES; 987 | CLANG_ENABLE_OBJC_ARC = YES; 988 | CLANG_ENABLE_OBJC_WEAK = YES; 989 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 990 | CLANG_WARN_BOOL_CONVERSION = YES; 991 | CLANG_WARN_COMMA = YES; 992 | CLANG_WARN_CONSTANT_CONVERSION = YES; 993 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 994 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 995 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 996 | CLANG_WARN_EMPTY_BODY = YES; 997 | CLANG_WARN_ENUM_CONVERSION = YES; 998 | CLANG_WARN_INFINITE_RECURSION = YES; 999 | CLANG_WARN_INT_CONVERSION = YES; 1000 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1001 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1002 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1003 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1004 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 1005 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1006 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1007 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1008 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 1009 | CLANG_WARN_UNREACHABLE_CODE = YES; 1010 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1011 | COPY_PHASE_STRIP = NO; 1012 | CURRENT_PROJECT_VERSION = 1; 1013 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1014 | ENABLE_NS_ASSERTIONS = NO; 1015 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1016 | GCC_C_LANGUAGE_STANDARD = gnu11; 1017 | GCC_NO_COMMON_BLOCKS = YES; 1018 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1019 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1020 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1021 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1022 | GCC_WARN_UNUSED_FUNCTION = YES; 1023 | GCC_WARN_UNUSED_VARIABLE = YES; 1024 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1025 | MTL_ENABLE_DEBUG_INFO = NO; 1026 | MTL_FAST_MATH = YES; 1027 | SDKROOT = iphoneos; 1028 | VALIDATE_PRODUCT = YES; 1029 | VERSIONING_SYSTEM = "apple-generic"; 1030 | VERSION_INFO_PREFIX = ""; 1031 | }; 1032 | name = "Simulator Release"; 1033 | }; 1034 | 8A66422325398783000E9321 /* Simulator Release */ = { 1035 | isa = XCBuildConfiguration; 1036 | buildSettings = { 1037 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1038 | CODE_SIGN_IDENTITY = "Apple Development"; 1039 | CODE_SIGN_STYLE = Automatic; 1040 | CURRENT_PROJECT_VERSION = 050000; 1041 | DEFINES_MODULE = YES; 1042 | DEVELOPMENT_TEAM = ""; 1043 | DYLIB_COMPATIBILITY_VERSION = 1; 1044 | DYLIB_CURRENT_VERSION = 1; 1045 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1046 | INFOPLIST_FILE = GoogleMaps/Info.plist; 1047 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1048 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1049 | LD_RUNPATH_SEARCH_PATHS = ( 1050 | "$(inherited)", 1051 | "@executable_path/Frameworks", 1052 | "@loader_path/Frameworks", 1053 | ); 1054 | MACH_O_TYPE = mh_dylib; 1055 | MARKETING_VERSION = 5.0.0; 1056 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMaps.framework/Modules/module.modulemap; 1057 | OTHER_LDFLAGS = "-ObjC"; 1058 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMaps; 1059 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1060 | SKIP_INSTALL = YES; 1061 | SUPPORTS_MACCATALYST = NO; 1062 | TARGETED_DEVICE_FAMILY = "1,2"; 1063 | }; 1064 | name = "Simulator Release"; 1065 | }; 1066 | 8A66422425398783000E9321 /* Simulator Release */ = { 1067 | isa = XCBuildConfiguration; 1068 | buildSettings = { 1069 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1070 | CODE_SIGN_IDENTITY = "Apple Development"; 1071 | CODE_SIGN_STYLE = Automatic; 1072 | CURRENT_PROJECT_VERSION = 050000; 1073 | DEFINES_MODULE = YES; 1074 | DEVELOPMENT_TEAM = ""; 1075 | DYLIB_COMPATIBILITY_VERSION = 1; 1076 | DYLIB_CURRENT_VERSION = 1; 1077 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1078 | INFOPLIST_FILE = GoogleMapsBase/Info.plist; 1079 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1080 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1081 | LD_RUNPATH_SEARCH_PATHS = ( 1082 | "$(inherited)", 1083 | "@executable_path/Frameworks", 1084 | "@loader_path/Frameworks", 1085 | ); 1086 | MARKETING_VERSION = 5.0.0; 1087 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsBase.framework/Modules/module.modulemap; 1088 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsBase; 1089 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1090 | SKIP_INSTALL = YES; 1091 | SUPPORTS_MACCATALYST = NO; 1092 | TARGETED_DEVICE_FAMILY = "1,2"; 1093 | }; 1094 | name = "Simulator Release"; 1095 | }; 1096 | 8A66422525398783000E9321 /* Simulator Release */ = { 1097 | isa = XCBuildConfiguration; 1098 | buildSettings = { 1099 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1100 | CODE_SIGN_IDENTITY = "Apple Development"; 1101 | CODE_SIGN_STYLE = Automatic; 1102 | CURRENT_PROJECT_VERSION = 050000; 1103 | DEFINES_MODULE = YES; 1104 | DEVELOPMENT_TEAM = ""; 1105 | DYLIB_COMPATIBILITY_VERSION = 1; 1106 | DYLIB_CURRENT_VERSION = 1; 1107 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1108 | INFOPLIST_FILE = GoogleMapsCore/Info.plist; 1109 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1110 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1111 | LD_RUNPATH_SEARCH_PATHS = ( 1112 | "$(inherited)", 1113 | "@executable_path/Frameworks", 1114 | "@loader_path/Frameworks", 1115 | ); 1116 | MARKETING_VERSION = 5.0.0; 1117 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsCore.framework/Modules/module.modulemap; 1118 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsCore; 1119 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1120 | SKIP_INSTALL = YES; 1121 | SUPPORTS_MACCATALYST = NO; 1122 | TARGETED_DEVICE_FAMILY = "1,2"; 1123 | }; 1124 | name = "Simulator Release"; 1125 | }; 1126 | 8A66422625398783000E9321 /* Simulator Release */ = { 1127 | isa = XCBuildConfiguration; 1128 | buildSettings = { 1129 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1130 | CODE_SIGN_IDENTITY = "Apple Development"; 1131 | CODE_SIGN_STYLE = Automatic; 1132 | CURRENT_PROJECT_VERSION = 050000; 1133 | DEFINES_MODULE = YES; 1134 | DEVELOPMENT_TEAM = ""; 1135 | DYLIB_COMPATIBILITY_VERSION = 1; 1136 | DYLIB_CURRENT_VERSION = 1; 1137 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1138 | INFOPLIST_FILE = GoogleMapsM4B/Info.plist; 1139 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1140 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1141 | LD_RUNPATH_SEARCH_PATHS = ( 1142 | "$(inherited)", 1143 | "@executable_path/Frameworks", 1144 | "@loader_path/Frameworks", 1145 | ); 1146 | MARKETING_VERSION = 5.0.0; 1147 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsM4B.framework/Modules/module.modulemap; 1148 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsM4B; 1149 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1150 | SKIP_INSTALL = YES; 1151 | SUPPORTS_MACCATALYST = NO; 1152 | TARGETED_DEVICE_FAMILY = "1,2"; 1153 | }; 1154 | name = "Simulator Release"; 1155 | }; 1156 | 8A66422725398783000E9321 /* Simulator Release */ = { 1157 | isa = XCBuildConfiguration; 1158 | buildSettings = { 1159 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1160 | CODE_SIGN_IDENTITY = "Apple Development"; 1161 | CODE_SIGN_STYLE = Automatic; 1162 | CURRENT_PROJECT_VERSION = 050000; 1163 | DEFINES_MODULE = YES; 1164 | DEVELOPMENT_TEAM = ""; 1165 | DYLIB_COMPATIBILITY_VERSION = 1; 1166 | DYLIB_CURRENT_VERSION = 1; 1167 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1168 | INFOPLIST_FILE = GooglePlaces/Info.plist; 1169 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1170 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1171 | LD_RUNPATH_SEARCH_PATHS = ( 1172 | "$(inherited)", 1173 | "@executable_path/Frameworks", 1174 | "@loader_path/Frameworks", 1175 | ); 1176 | MARKETING_VERSION = 5.0.0; 1177 | MODULEMAP_FILE = Carthage/Build/iOS/GooglePlaces.framework/Modules/module.modulemap; 1178 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GooglePlaces; 1179 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1180 | SKIP_INSTALL = YES; 1181 | SUPPORTS_MACCATALYST = NO; 1182 | TARGETED_DEVICE_FAMILY = "1,2"; 1183 | }; 1184 | name = "Simulator Release"; 1185 | }; 1186 | 8A8C8EF025387A0D00F5C247 /* Debug */ = { 1187 | isa = XCBuildConfiguration; 1188 | buildSettings = { 1189 | ALWAYS_SEARCH_USER_PATHS = NO; 1190 | CLANG_ANALYZER_NONNULL = YES; 1191 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 1192 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 1193 | CLANG_CXX_LIBRARY = "libc++"; 1194 | CLANG_ENABLE_MODULES = YES; 1195 | CLANG_ENABLE_OBJC_ARC = YES; 1196 | CLANG_ENABLE_OBJC_WEAK = YES; 1197 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1198 | CLANG_WARN_BOOL_CONVERSION = YES; 1199 | CLANG_WARN_COMMA = YES; 1200 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1201 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1202 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1203 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1204 | CLANG_WARN_EMPTY_BODY = YES; 1205 | CLANG_WARN_ENUM_CONVERSION = YES; 1206 | CLANG_WARN_INFINITE_RECURSION = YES; 1207 | CLANG_WARN_INT_CONVERSION = YES; 1208 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1209 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1210 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1211 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1212 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 1213 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1214 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1215 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1216 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 1217 | CLANG_WARN_UNREACHABLE_CODE = YES; 1218 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1219 | COPY_PHASE_STRIP = NO; 1220 | CURRENT_PROJECT_VERSION = 1; 1221 | DEBUG_INFORMATION_FORMAT = dwarf; 1222 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1223 | ENABLE_TESTABILITY = YES; 1224 | GCC_C_LANGUAGE_STANDARD = gnu11; 1225 | GCC_DYNAMIC_NO_PIC = NO; 1226 | GCC_NO_COMMON_BLOCKS = YES; 1227 | GCC_OPTIMIZATION_LEVEL = 0; 1228 | GCC_PREPROCESSOR_DEFINITIONS = ( 1229 | "DEBUG=1", 1230 | "$(inherited)", 1231 | ); 1232 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1233 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1234 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1235 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1236 | GCC_WARN_UNUSED_FUNCTION = YES; 1237 | GCC_WARN_UNUSED_VARIABLE = YES; 1238 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1239 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 1240 | MTL_FAST_MATH = YES; 1241 | ONLY_ACTIVE_ARCH = YES; 1242 | SDKROOT = iphoneos; 1243 | VERSIONING_SYSTEM = "apple-generic"; 1244 | VERSION_INFO_PREFIX = ""; 1245 | }; 1246 | name = Debug; 1247 | }; 1248 | 8A8C8EF125387A0D00F5C247 /* Release */ = { 1249 | isa = XCBuildConfiguration; 1250 | buildSettings = { 1251 | ALWAYS_SEARCH_USER_PATHS = NO; 1252 | CLANG_ANALYZER_NONNULL = YES; 1253 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 1254 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 1255 | CLANG_CXX_LIBRARY = "libc++"; 1256 | CLANG_ENABLE_MODULES = YES; 1257 | CLANG_ENABLE_OBJC_ARC = YES; 1258 | CLANG_ENABLE_OBJC_WEAK = YES; 1259 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 1260 | CLANG_WARN_BOOL_CONVERSION = YES; 1261 | CLANG_WARN_COMMA = YES; 1262 | CLANG_WARN_CONSTANT_CONVERSION = YES; 1263 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 1264 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 1265 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 1266 | CLANG_WARN_EMPTY_BODY = YES; 1267 | CLANG_WARN_ENUM_CONVERSION = YES; 1268 | CLANG_WARN_INFINITE_RECURSION = YES; 1269 | CLANG_WARN_INT_CONVERSION = YES; 1270 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 1271 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 1272 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 1273 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 1274 | CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; 1275 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 1276 | CLANG_WARN_STRICT_PROTOTYPES = YES; 1277 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 1278 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 1279 | CLANG_WARN_UNREACHABLE_CODE = YES; 1280 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 1281 | COPY_PHASE_STRIP = NO; 1282 | CURRENT_PROJECT_VERSION = 1; 1283 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 1284 | ENABLE_NS_ASSERTIONS = NO; 1285 | ENABLE_STRICT_OBJC_MSGSEND = YES; 1286 | GCC_C_LANGUAGE_STANDARD = gnu11; 1287 | GCC_NO_COMMON_BLOCKS = YES; 1288 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 1289 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 1290 | GCC_WARN_UNDECLARED_SELECTOR = YES; 1291 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 1292 | GCC_WARN_UNUSED_FUNCTION = YES; 1293 | GCC_WARN_UNUSED_VARIABLE = YES; 1294 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1295 | MTL_ENABLE_DEBUG_INFO = NO; 1296 | MTL_FAST_MATH = YES; 1297 | SDKROOT = iphoneos; 1298 | VALIDATE_PRODUCT = YES; 1299 | VERSIONING_SYSTEM = "apple-generic"; 1300 | VERSION_INFO_PREFIX = ""; 1301 | }; 1302 | name = Release; 1303 | }; 1304 | 8A8C8EF325387A0D00F5C247 /* Debug */ = { 1305 | isa = XCBuildConfiguration; 1306 | buildSettings = { 1307 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1308 | CODE_SIGN_IDENTITY = "Apple Development"; 1309 | CODE_SIGN_STYLE = Automatic; 1310 | CURRENT_PROJECT_VERSION = 050000; 1311 | DEFINES_MODULE = YES; 1312 | DEVELOPMENT_TEAM = ""; 1313 | DYLIB_COMPATIBILITY_VERSION = 1; 1314 | DYLIB_CURRENT_VERSION = 1; 1315 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1316 | INFOPLIST_FILE = GoogleMaps/Info.plist; 1317 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1318 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1319 | LD_RUNPATH_SEARCH_PATHS = ( 1320 | "$(inherited)", 1321 | "@executable_path/Frameworks", 1322 | "@loader_path/Frameworks", 1323 | ); 1324 | MACH_O_TYPE = mh_dylib; 1325 | MARKETING_VERSION = 5.0.0; 1326 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMaps.framework/Modules/module.modulemap; 1327 | OTHER_LDFLAGS = "-ObjC"; 1328 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMaps; 1329 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1330 | SKIP_INSTALL = YES; 1331 | SUPPORTS_MACCATALYST = NO; 1332 | TARGETED_DEVICE_FAMILY = "1,2"; 1333 | }; 1334 | name = Debug; 1335 | }; 1336 | 8A8C8EF425387A0D00F5C247 /* Release */ = { 1337 | isa = XCBuildConfiguration; 1338 | buildSettings = { 1339 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1340 | CODE_SIGN_IDENTITY = "Apple Development"; 1341 | CODE_SIGN_STYLE = Automatic; 1342 | CURRENT_PROJECT_VERSION = 050000; 1343 | DEFINES_MODULE = YES; 1344 | DEVELOPMENT_TEAM = ""; 1345 | DYLIB_COMPATIBILITY_VERSION = 1; 1346 | DYLIB_CURRENT_VERSION = 1; 1347 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1348 | INFOPLIST_FILE = GoogleMaps/Info.plist; 1349 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1350 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1351 | LD_RUNPATH_SEARCH_PATHS = ( 1352 | "$(inherited)", 1353 | "@executable_path/Frameworks", 1354 | "@loader_path/Frameworks", 1355 | ); 1356 | MACH_O_TYPE = mh_dylib; 1357 | MARKETING_VERSION = 5.0.0; 1358 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMaps.framework/Modules/module.modulemap; 1359 | OTHER_LDFLAGS = "-ObjC"; 1360 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMaps; 1361 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1362 | SKIP_INSTALL = YES; 1363 | SUPPORTS_MACCATALYST = NO; 1364 | TARGETED_DEVICE_FAMILY = "1,2"; 1365 | }; 1366 | name = Release; 1367 | }; 1368 | 8A8C8F0225387A3E00F5C247 /* Debug */ = { 1369 | isa = XCBuildConfiguration; 1370 | buildSettings = { 1371 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1372 | CODE_SIGN_IDENTITY = "Apple Development"; 1373 | CODE_SIGN_STYLE = Automatic; 1374 | CURRENT_PROJECT_VERSION = 050000; 1375 | DEFINES_MODULE = YES; 1376 | DEVELOPMENT_TEAM = ""; 1377 | DYLIB_COMPATIBILITY_VERSION = 1; 1378 | DYLIB_CURRENT_VERSION = 1; 1379 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1380 | INFOPLIST_FILE = GoogleMapsBase/Info.plist; 1381 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1382 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1383 | LD_RUNPATH_SEARCH_PATHS = ( 1384 | "$(inherited)", 1385 | "@executable_path/Frameworks", 1386 | "@loader_path/Frameworks", 1387 | ); 1388 | MARKETING_VERSION = 5.0.0; 1389 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsBase.framework/Modules/module.modulemap; 1390 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsBase; 1391 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1392 | SKIP_INSTALL = YES; 1393 | SUPPORTS_MACCATALYST = NO; 1394 | TARGETED_DEVICE_FAMILY = "1,2"; 1395 | }; 1396 | name = Debug; 1397 | }; 1398 | 8A8C8F0325387A3E00F5C247 /* Release */ = { 1399 | isa = XCBuildConfiguration; 1400 | buildSettings = { 1401 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1402 | CODE_SIGN_IDENTITY = "Apple Development"; 1403 | CODE_SIGN_STYLE = Automatic; 1404 | CURRENT_PROJECT_VERSION = 050000; 1405 | DEFINES_MODULE = YES; 1406 | DEVELOPMENT_TEAM = ""; 1407 | DYLIB_COMPATIBILITY_VERSION = 1; 1408 | DYLIB_CURRENT_VERSION = 1; 1409 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1410 | INFOPLIST_FILE = GoogleMapsBase/Info.plist; 1411 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1412 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1413 | LD_RUNPATH_SEARCH_PATHS = ( 1414 | "$(inherited)", 1415 | "@executable_path/Frameworks", 1416 | "@loader_path/Frameworks", 1417 | ); 1418 | MARKETING_VERSION = 5.0.0; 1419 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsBase.framework/Modules/module.modulemap; 1420 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsBase; 1421 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1422 | SKIP_INSTALL = YES; 1423 | SUPPORTS_MACCATALYST = NO; 1424 | TARGETED_DEVICE_FAMILY = "1,2"; 1425 | }; 1426 | name = Release; 1427 | }; 1428 | 8A8C8F1125387A4B00F5C247 /* Debug */ = { 1429 | isa = XCBuildConfiguration; 1430 | buildSettings = { 1431 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1432 | CODE_SIGN_IDENTITY = "Apple Development"; 1433 | CODE_SIGN_STYLE = Automatic; 1434 | CURRENT_PROJECT_VERSION = 050000; 1435 | DEFINES_MODULE = YES; 1436 | DEVELOPMENT_TEAM = ""; 1437 | DYLIB_COMPATIBILITY_VERSION = 1; 1438 | DYLIB_CURRENT_VERSION = 1; 1439 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1440 | INFOPLIST_FILE = GoogleMapsCore/Info.plist; 1441 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1442 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1443 | LD_RUNPATH_SEARCH_PATHS = ( 1444 | "$(inherited)", 1445 | "@executable_path/Frameworks", 1446 | "@loader_path/Frameworks", 1447 | ); 1448 | MARKETING_VERSION = 5.0.0; 1449 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsCore.framework/Modules/module.modulemap; 1450 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsCore; 1451 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1452 | SKIP_INSTALL = YES; 1453 | SUPPORTS_MACCATALYST = NO; 1454 | TARGETED_DEVICE_FAMILY = "1,2"; 1455 | }; 1456 | name = Debug; 1457 | }; 1458 | 8A8C8F1225387A4B00F5C247 /* Release */ = { 1459 | isa = XCBuildConfiguration; 1460 | buildSettings = { 1461 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1462 | CODE_SIGN_IDENTITY = "Apple Development"; 1463 | CODE_SIGN_STYLE = Automatic; 1464 | CURRENT_PROJECT_VERSION = 050000; 1465 | DEFINES_MODULE = YES; 1466 | DEVELOPMENT_TEAM = ""; 1467 | DYLIB_COMPATIBILITY_VERSION = 1; 1468 | DYLIB_CURRENT_VERSION = 1; 1469 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1470 | INFOPLIST_FILE = GoogleMapsCore/Info.plist; 1471 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1472 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1473 | LD_RUNPATH_SEARCH_PATHS = ( 1474 | "$(inherited)", 1475 | "@executable_path/Frameworks", 1476 | "@loader_path/Frameworks", 1477 | ); 1478 | MARKETING_VERSION = 5.0.0; 1479 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsCore.framework/Modules/module.modulemap; 1480 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsCore; 1481 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1482 | SKIP_INSTALL = YES; 1483 | SUPPORTS_MACCATALYST = NO; 1484 | TARGETED_DEVICE_FAMILY = "1,2"; 1485 | }; 1486 | name = Release; 1487 | }; 1488 | 8A8C8F2125387A5800F5C247 /* Debug */ = { 1489 | isa = XCBuildConfiguration; 1490 | buildSettings = { 1491 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1492 | CODE_SIGN_IDENTITY = "Apple Development"; 1493 | CODE_SIGN_STYLE = Automatic; 1494 | CURRENT_PROJECT_VERSION = 050000; 1495 | DEFINES_MODULE = YES; 1496 | DEVELOPMENT_TEAM = ""; 1497 | DYLIB_COMPATIBILITY_VERSION = 1; 1498 | DYLIB_CURRENT_VERSION = 1; 1499 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1500 | INFOPLIST_FILE = GoogleMapsM4B/Info.plist; 1501 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1502 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1503 | LD_RUNPATH_SEARCH_PATHS = ( 1504 | "$(inherited)", 1505 | "@executable_path/Frameworks", 1506 | "@loader_path/Frameworks", 1507 | ); 1508 | MARKETING_VERSION = 5.0.0; 1509 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsM4B.framework/Modules/module.modulemap; 1510 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsM4B; 1511 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1512 | SKIP_INSTALL = YES; 1513 | SUPPORTS_MACCATALYST = NO; 1514 | TARGETED_DEVICE_FAMILY = "1,2"; 1515 | }; 1516 | name = Debug; 1517 | }; 1518 | 8A8C8F2225387A5800F5C247 /* Release */ = { 1519 | isa = XCBuildConfiguration; 1520 | buildSettings = { 1521 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1522 | CODE_SIGN_IDENTITY = "Apple Development"; 1523 | CODE_SIGN_STYLE = Automatic; 1524 | CURRENT_PROJECT_VERSION = 050000; 1525 | DEFINES_MODULE = YES; 1526 | DEVELOPMENT_TEAM = ""; 1527 | DYLIB_COMPATIBILITY_VERSION = 1; 1528 | DYLIB_CURRENT_VERSION = 1; 1529 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1530 | INFOPLIST_FILE = GoogleMapsM4B/Info.plist; 1531 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1532 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1533 | LD_RUNPATH_SEARCH_PATHS = ( 1534 | "$(inherited)", 1535 | "@executable_path/Frameworks", 1536 | "@loader_path/Frameworks", 1537 | ); 1538 | MARKETING_VERSION = 5.0.0; 1539 | MODULEMAP_FILE = Carthage/Build/iOS/GoogleMapsM4B.framework/Modules/module.modulemap; 1540 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GoogleMapsM4B; 1541 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1542 | SKIP_INSTALL = YES; 1543 | SUPPORTS_MACCATALYST = NO; 1544 | TARGETED_DEVICE_FAMILY = "1,2"; 1545 | }; 1546 | name = Release; 1547 | }; 1548 | 8A8C8F3225387A7C00F5C247 /* Debug */ = { 1549 | isa = XCBuildConfiguration; 1550 | buildSettings = { 1551 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1552 | CODE_SIGN_IDENTITY = "Apple Development"; 1553 | CODE_SIGN_STYLE = Automatic; 1554 | CURRENT_PROJECT_VERSION = 050000; 1555 | DEFINES_MODULE = YES; 1556 | DEVELOPMENT_TEAM = ""; 1557 | DYLIB_COMPATIBILITY_VERSION = 1; 1558 | DYLIB_CURRENT_VERSION = 1; 1559 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1560 | INFOPLIST_FILE = GooglePlaces/Info.plist; 1561 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1562 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1563 | LD_RUNPATH_SEARCH_PATHS = ( 1564 | "$(inherited)", 1565 | "@executable_path/Frameworks", 1566 | "@loader_path/Frameworks", 1567 | ); 1568 | MARKETING_VERSION = 5.0.0; 1569 | MODULEMAP_FILE = Carthage/Build/iOS/GooglePlaces.framework/Modules/module.modulemap; 1570 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GooglePlaces; 1571 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1572 | SKIP_INSTALL = YES; 1573 | SUPPORTS_MACCATALYST = NO; 1574 | TARGETED_DEVICE_FAMILY = "1,2"; 1575 | }; 1576 | name = Debug; 1577 | }; 1578 | 8A8C8F3325387A7C00F5C247 /* Release */ = { 1579 | isa = XCBuildConfiguration; 1580 | buildSettings = { 1581 | BUILD_LIBRARY_FOR_DISTRIBUTION = YES; 1582 | CODE_SIGN_IDENTITY = "Apple Development"; 1583 | CODE_SIGN_STYLE = Automatic; 1584 | CURRENT_PROJECT_VERSION = 050000; 1585 | DEFINES_MODULE = YES; 1586 | DEVELOPMENT_TEAM = ""; 1587 | DYLIB_COMPATIBILITY_VERSION = 1; 1588 | DYLIB_CURRENT_VERSION = 1; 1589 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 1590 | INFOPLIST_FILE = GooglePlaces/Info.plist; 1591 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 1592 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 1593 | LD_RUNPATH_SEARCH_PATHS = ( 1594 | "$(inherited)", 1595 | "@executable_path/Frameworks", 1596 | "@loader_path/Frameworks", 1597 | ); 1598 | MARKETING_VERSION = 5.0.0; 1599 | MODULEMAP_FILE = Carthage/Build/iOS/GooglePlaces.framework/Modules/module.modulemap; 1600 | PRODUCT_BUNDLE_IDENTIFIER = com.google.ios.GooglePlaces; 1601 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 1602 | SKIP_INSTALL = YES; 1603 | SUPPORTS_MACCATALYST = NO; 1604 | TARGETED_DEVICE_FAMILY = "1,2"; 1605 | }; 1606 | name = Release; 1607 | }; 1608 | /* End XCBuildConfiguration section */ 1609 | 1610 | /* Begin XCConfigurationList section */ 1611 | 8A8C8EE425387A0C00F5C247 /* Build configuration list for PBXProject "GoogleMaps" */ = { 1612 | isa = XCConfigurationList; 1613 | buildConfigurations = ( 1614 | 8A8C8EF025387A0D00F5C247 /* Debug */, 1615 | 8A8C8EF125387A0D00F5C247 /* Release */, 1616 | 8A66422225398783000E9321 /* Simulator Release */, 1617 | ); 1618 | defaultConfigurationIsVisible = 0; 1619 | defaultConfigurationName = Release; 1620 | }; 1621 | 8A8C8EF225387A0D00F5C247 /* Build configuration list for PBXNativeTarget "GoogleMaps" */ = { 1622 | isa = XCConfigurationList; 1623 | buildConfigurations = ( 1624 | 8A8C8EF325387A0D00F5C247 /* Debug */, 1625 | 8A8C8EF425387A0D00F5C247 /* Release */, 1626 | 8A66422325398783000E9321 /* Simulator Release */, 1627 | ); 1628 | defaultConfigurationIsVisible = 0; 1629 | defaultConfigurationName = Release; 1630 | }; 1631 | 8A8C8F0125387A3E00F5C247 /* Build configuration list for PBXNativeTarget "GoogleMapsBase" */ = { 1632 | isa = XCConfigurationList; 1633 | buildConfigurations = ( 1634 | 8A8C8F0225387A3E00F5C247 /* Debug */, 1635 | 8A8C8F0325387A3E00F5C247 /* Release */, 1636 | 8A66422425398783000E9321 /* Simulator Release */, 1637 | ); 1638 | defaultConfigurationIsVisible = 0; 1639 | defaultConfigurationName = Release; 1640 | }; 1641 | 8A8C8F1025387A4B00F5C247 /* Build configuration list for PBXNativeTarget "GoogleMapsCore" */ = { 1642 | isa = XCConfigurationList; 1643 | buildConfigurations = ( 1644 | 8A8C8F1125387A4B00F5C247 /* Debug */, 1645 | 8A8C8F1225387A4B00F5C247 /* Release */, 1646 | 8A66422525398783000E9321 /* Simulator Release */, 1647 | ); 1648 | defaultConfigurationIsVisible = 0; 1649 | defaultConfigurationName = Release; 1650 | }; 1651 | 8A8C8F2025387A5800F5C247 /* Build configuration list for PBXNativeTarget "GoogleMapsM4B" */ = { 1652 | isa = XCConfigurationList; 1653 | buildConfigurations = ( 1654 | 8A8C8F2125387A5800F5C247 /* Debug */, 1655 | 8A8C8F2225387A5800F5C247 /* Release */, 1656 | 8A66422625398783000E9321 /* Simulator Release */, 1657 | ); 1658 | defaultConfigurationIsVisible = 0; 1659 | defaultConfigurationName = Release; 1660 | }; 1661 | 8A8C8F3125387A7C00F5C247 /* Build configuration list for PBXNativeTarget "GooglePlaces" */ = { 1662 | isa = XCConfigurationList; 1663 | buildConfigurations = ( 1664 | 8A8C8F3225387A7C00F5C247 /* Debug */, 1665 | 8A8C8F3325387A7C00F5C247 /* Release */, 1666 | 8A66422725398783000E9321 /* Simulator Release */, 1667 | ); 1668 | defaultConfigurationIsVisible = 0; 1669 | defaultConfigurationName = Release; 1670 | }; 1671 | /* End XCConfigurationList section */ 1672 | }; 1673 | rootObject = 8A8C8EE125387A0C00F5C247 /* Project object */; 1674 | } 1675 | --------------------------------------------------------------------------------