Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support installation via Swift Package Manager #209

Merged
merged 7 commits into from
Nov 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 27 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,26 @@ step-library:
command: bash <(curl -s https://codecov.io/bash)

jobs:
SPM-job:
parameters:
xcode:
type: string
macos:
xcode: << parameters.xcode >>
environment:
HOMEBREW_NO_AUTO_UPDATE: 1
steps:
- checkout
- run: swift build
- run: swift test

build-job:
parameters:
xcode:
type: string
device:
type: string
default: "iPhone 6 Plus"
default: "iPhone 8 Plus"
iOS:
type: string
default: "12.1"
Expand Down Expand Up @@ -64,10 +77,10 @@ jobs:
- run:
name: Dependencies
command: |
carthage bootstrap --platform ios --cache-builds --configuration Debug --no-use-binaries
carthage bootstrap --platform tvos --cache-builds --configuration Debug --no-use-binaries
carthage bootstrap --platform macos --cache-builds --configuration Debug --no-use-binaries
carthage bootstrap --platform watchos --cache-builds --configuration Debug --no-use-binaries
./scripts/wcarthage.sh bootstrap --platform ios --cache-builds --configuration Debug --no-use-binaries
./scripts/wcarthage.sh bootstrap --platform tvos --cache-builds --configuration Debug --no-use-binaries
./scripts/wcarthage.sh bootstrap --platform macos --cache-builds --configuration Debug --no-use-binaries
./scripts/wcarthage.sh bootstrap --platform watchos --cache-builds --configuration Debug --no-use-binaries
- *save-cache
- run:
name: iOS
Expand All @@ -88,22 +101,18 @@ jobs:
command: xcodebuild -project MapboxGeocoder.xcodeproj -scheme 'MapboxGeocoder Mac' clean build<<# parameters.test >> test <</ parameters.test >><<# parameters.codecoverage >>-enableCodeCoverage YES<</ parameters.codecoverage >>
- run:
name: watchOS
command: xcodebuild -project MapboxGeocoder.xcodeproj -scheme 'MapboxGeocoder watchOS' -destination 'platform=watchOS Simulator,name=Apple Watch Series 4 - 44mm,OS=<< parameters.watchOS >>' clean build
command: xcodebuild -project MapboxGeocoder.xcodeproj -scheme 'MapboxGeocoder watchOS' -destination 'platform=watchOS Simulator,name=Apple Watch Series 5 - 44mm,OS=<< parameters.watchOS >>' clean build

workflows:
workflow:
jobs:
- build-job:
name: "Xcode_10.2_iOS_12"
xcode: "10.2.0"
iOS: "12.2"
tvOS: "12.2"
watchOS: "5.2"
name: "Xcode_12.0"
xcode: "12.0.0"
iOS: "14.0"
tvOS: "14.0"
watchOS: "7.0"
codecoverage: true
- build-job:
name: "Xcode_11.3_iOS_13"
xcode: "11.3.0"
device: "iPhone 8 Plus"
iOS: "13.3"
tvOS: "13.3"
watchOS: "6.1.1"
- SPM-job:
name: "SPM"
xcode: "12.2.0"
2 changes: 1 addition & 1 deletion Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
binary "https://www.mapbox.com/ios-sdk/Mapbox-iOS-SDK.json" ~> 5.5
github "frederoni/OHHTTPStubs" "563f48d3fab84ef04639649c770b00f4fa502cca"
github "AliSoftware/OHHTTPStubs" ~> 9.0
4 changes: 2 additions & 2 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
binary "https://www.mapbox.com/ios-sdk/Mapbox-iOS-SDK.json" "5.5.0"
github "frederoni/OHHTTPStubs" "563f48d3fab84ef04639649c770b00f4fa502cca"
binary "https://www.mapbox.com/ios-sdk/Mapbox-iOS-SDK.json" "5.9.0"
github "AliSoftware/OHHTTPStubs" "9.0.0"
8 changes: 4 additions & 4 deletions MapboxGeocoder.swift.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Pod::Spec.new do |s|
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

# When using multiple platforms
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.12"
s.watchos.deployment_target = "3.0"
s.tvos.deployment_target = "10.0"

# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

Expand Down
62 changes: 36 additions & 26 deletions MapboxGeocoder.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@
DA2E03F21CB0FE0200D1269A /* MBRectangularRegion.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2E03F11CB0FE0200D1269A /* MBRectangularRegion.swift */; };
DA2EC05C1CED72E900D4BA5D /* MBPlacemarkScope.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2EC05B1CED72E900D4BA5D /* MBPlacemarkScope.swift */; };
DA2EC05E1CED732F00D4BA5D /* MBGeocodeOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA2EC05D1CED732F00D4BA5D /* MBGeocodeOptions.swift */; };
DA4B402F255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4B402E255BCBA7001A4F30 /* MBPlacemarkPrecision.swift */; };
DA4B4030255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4B402E255BCBA7001A4F30 /* MBPlacemarkPrecision.swift */; };
DA4B4031255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4B402E255BCBA7001A4F30 /* MBPlacemarkPrecision.swift */; };
DA4B4032255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4B402E255BCBA7001A4F30 /* MBPlacemarkPrecision.swift */; };
DA4C581920E195E300A61B00 /* MapboxGeocoder.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DDC2470419A1C3B40054B0C0 /* MapboxGeocoder.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
DA4D90071DD63AEC006EC71A /* PlacemarkScopeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4D90061DD63AEC006EC71A /* PlacemarkScopeTests.swift */; };
DA4D90081DD63AEC006EC71A /* PlacemarkScopeTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA4D90061DD63AEC006EC71A /* PlacemarkScopeTests.swift */; };
Expand Down Expand Up @@ -244,6 +248,7 @@
DA2E03F11CB0FE0200D1269A /* MBRectangularRegion.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MBRectangularRegion.swift; sourceTree = "<group>"; };
DA2EC05B1CED72E900D4BA5D /* MBPlacemarkScope.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MBPlacemarkScope.swift; sourceTree = "<group>"; };
DA2EC05D1CED732F00D4BA5D /* MBGeocodeOptions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MBGeocodeOptions.swift; sourceTree = "<group>"; };
DA4B402E255BCBA7001A4F30 /* MBPlacemarkPrecision.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MBPlacemarkPrecision.swift; sourceTree = "<group>"; };
DA4D90061DD63AEC006EC71A /* PlacemarkScopeTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PlacemarkScopeTests.swift; sourceTree = "<group>"; };
DA5170961CF1B18F00CD6DCF /* MapboxGeocoder.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MapboxGeocoder.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DA51709F1CF1B18F00CD6DCF /* MapboxGeocoderTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MapboxGeocoderTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -427,13 +432,15 @@
DA2E03EF1CB0FDB400D1269A /* MBPlacemark.swift */,
DA8B5C05225FB2F400CD1C99 /* MBPlacemarkPrecision.h */,
DA8B5C06225FB2F400CD1C99 /* MBPlacemarkPrecision.m */,
DA4B402E255BCBA7001A4F30 /* MBPlacemarkPrecision.swift */,
DA29C8DE1CEBE90200E48A61 /* MBPlacemarkScope.h */,
DA2EC05B1CED72E900D4BA5D /* MBPlacemarkScope.swift */,
DA2E03F11CB0FE0200D1269A /* MBRectangularRegion.swift */,
DDC2470619A1C3B40054B0C0 /* Supporting Files */,
35D3DE382112410A00B62912 /* CoreLocation.swift */,
);
path = MapboxGeocoder;
name = MapboxGeocoder;
path = Sources/MapboxGeocoder;
sourceTree = "<group>";
};
DDC246FD19A1C2D20054B0C0 /* Swift */ = {
Expand Down Expand Up @@ -477,7 +484,8 @@
DDF1E84E1BD6F7BA00C40C78 /* Info.plist */,
DDF1E8571BD700EB00C40C78 /* Fixtures */,
);
path = MapboxGeocoderTests;
name = MapboxGeocoderTests;
path = Tests/MapboxGeocoderTests;
sourceTree = "<group>";
};
DDF1E8571BD700EB00C40C78 /* Fixtures */ = {
Expand Down Expand Up @@ -984,6 +992,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA4B4030255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */,
DA5170B31CF1B1E000CD6DCF /* MBRectangularRegion.swift in Sources */,
DA5170B01CF1B1E000CD6DCF /* MBPlacemark.swift in Sources */,
DA5170AF1CF1B1E000CD6DCF /* MBGeocoder.swift in Sources */,
Expand Down Expand Up @@ -1011,6 +1020,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA4B4031255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */,
DA5170DE1CF2541C00CD6DCF /* MBRectangularRegion.swift in Sources */,
DA5170DB1CF2541C00CD6DCF /* MBPlacemark.swift in Sources */,
DA5170DA1CF2541C00CD6DCF /* MBGeocoder.swift in Sources */,
Expand Down Expand Up @@ -1038,6 +1048,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA4B4032255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */,
DA5170F91CF2582F00CD6DCF /* MBRectangularRegion.swift in Sources */,
DA5170F61CF2582F00CD6DCF /* MBPlacemark.swift in Sources */,
DA5170F51CF2582F00CD6DCF /* MBGeocoder.swift in Sources */,
Expand All @@ -1061,6 +1072,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DA4B402F255BCBA7001A4F30 /* MBPlacemarkPrecision.swift in Sources */,
DA2EC05E1CED732F00D4BA5D /* MBGeocodeOptions.swift in Sources */,
DA2E03F21CB0FE0200D1269A /* MBRectangularRegion.swift in Sources */,
DDC2295E1A360843006BE405 /* MBGeocoder.swift in Sources */,
Expand Down Expand Up @@ -1148,7 +1160,7 @@
);
FRAMEWORK_VERSION = A;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoder;
Expand Down Expand Up @@ -1179,7 +1191,7 @@
);
FRAMEWORK_VERSION = A;
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoder;
Expand All @@ -1205,7 +1217,7 @@
"$(PROJECT_DIR)/Carthage/Build/Mac",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoderTests/Info.plist;
INFOPLIST_FILE = Tests/MapboxGeocoderTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks $(PROJECT_DIR)/Carthage/Build/Mac";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoderTests;
PRODUCT_NAME = MapboxGeocoderTests;
Expand All @@ -1228,7 +1240,7 @@
"$(PROJECT_DIR)/Carthage/Build/Mac",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoderTests/Info.plist;
INFOPLIST_FILE = Tests/MapboxGeocoderTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks $(PROJECT_DIR)/Carthage/Build/Mac";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoderTests;
PRODUCT_NAME = MapboxGeocoderTests;
Expand All @@ -1253,15 +1265,14 @@
"$(PROJECT_DIR)/Carthage/Build/tvOS",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoder;
PRODUCT_NAME = MapboxGeocoder;
SDKROOT = appletvos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
Expand All @@ -1284,7 +1295,7 @@
"$(PROJECT_DIR)/Carthage/Build/tvOS",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoder;
Expand All @@ -1293,7 +1304,6 @@
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = 3;
TVOS_DEPLOYMENT_TARGET = 9.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
Expand All @@ -1310,14 +1320,13 @@
"$(PROJECT_DIR)/Carthage/Build/tvOS",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoderTests/Info.plist;
INFOPLIST_FILE = Tests/MapboxGeocoderTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoderTests;
PRODUCT_NAME = MapboxGeocoderTests;
SDKROOT = appletvos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
TARGETED_DEVICE_FAMILY = "1,2,3";
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Debug;
};
Expand All @@ -1333,14 +1342,13 @@
"$(PROJECT_DIR)/Carthage/Build/tvOS",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoderTests/Info.plist;
INFOPLIST_FILE = Tests/MapboxGeocoderTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoderTests;
PRODUCT_NAME = MapboxGeocoderTests;
SDKROOT = appletvos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
TARGETED_DEVICE_FAMILY = "1,2,3";
TVOS_DEPLOYMENT_TARGET = 9.0;
};
name = Release;
};
Expand All @@ -1357,7 +1365,7 @@
DYLIB_CURRENT_VERSION = 17;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoder;
Expand All @@ -1367,7 +1375,6 @@
TARGETED_DEVICE_FAMILY = 4;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Debug;
};
Expand All @@ -1385,7 +1392,7 @@
DYLIB_CURRENT_VERSION = 17;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoder;
Expand All @@ -1396,7 +1403,6 @@
TARGETED_DEVICE_FAMILY = 4;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Release;
};
Expand Down Expand Up @@ -1448,15 +1454,17 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TVOS_DEPLOYMENT_TARGET = 12.0;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Debug;
};
Expand Down Expand Up @@ -1501,15 +1509,17 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
MACOSX_DEPLOYMENT_TARGET = 10.10;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_SWIFT3_OBJC_INFERENCE = Off;
SWIFT_VERSION = 5.0;
TARGETED_DEVICE_FAMILY = "1,2";
TVOS_DEPLOYMENT_TARGET = 12.0;
VALIDATE_PRODUCT = YES;
WATCHOS_DEPLOYMENT_TARGET = 3.0;
};
name = Release;
};
Expand Down Expand Up @@ -1562,7 +1572,7 @@
"DEBUG=1",
"$(inherited)",
);
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.mapbox.$(PRODUCT_NAME:rfc1034identifier)";
Expand All @@ -1585,7 +1595,7 @@
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 17;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = MapboxGeocoder/Info.plist;
INFOPLIST_FILE = Sources/MapboxGeocoder/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "com.mapbox.$(PRODUCT_NAME:rfc1034identifier)";
Expand Down Expand Up @@ -1642,7 +1652,7 @@
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoderTests/Info.plist;
INFOPLIST_FILE = Tests/MapboxGeocoderTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoderTests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -1662,7 +1672,7 @@
"$(PROJECT_DIR)/Carthage/Build/iOS",
);
GCC_NO_COMMON_BLOCKS = YES;
INFOPLIST_FILE = MapboxGeocoderTests/Info.plist;
INFOPLIST_FILE = Tests/MapboxGeocoderTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.mapbox.MapboxGeocoderTests;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
Loading