Skip to content
Merged

v1.2.2 #3202

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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ workflows:
name: "Xcode_11.4.1_iOS_12.2"
xcode: "11.4.1"
iOS: "12.2"
codecoverage: true
codecoverage: false
- build-job:
name: "Xcode_11.4.1_iOS_10.3.1"
xcode: "11.4.1"
Expand Down
16 changes: 8 additions & 8 deletions .tx/config
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ minimum_perc = 80
type = STRINGS

[mapbox-navigation-ios.LocalizableStrings]
file_filter = MapboxNavigation/Resources/<lang>.lproj/Localizable.strings
source_file = MapboxNavigation/Resources/Base.lproj/Localizable.strings
file_filter = Sources/MapboxNavigation/Resources/<lang>.lproj/Localizable.strings
source_file = Sources/MapboxNavigation/Resources/Base.lproj/Localizable.strings
source_lang = en

[mapbox-navigation-ios.localizablestringsdict]
file_filter = MapboxNavigation/Resources/<lang>.lproj/Localizable.stringsdict
source_file = MapboxNavigation/Resources/en.lproj/Localizable.stringsdict
file_filter = Sources/MapboxNavigation/Resources/<lang>.lproj/Localizable.stringsdict
source_file = Sources/MapboxNavigation/Resources/en.lproj/Localizable.stringsdict
source_lang = en
type = STRINGSDICT

[mapbox-navigation-ios.LocalizableCoreStrings]
file_filter = MapboxCoreNavigation/Resources/<lang>.lproj/Localizable.strings
source_file = MapboxCoreNavigation/Resources/Base.lproj/Localizable.strings
file_filter = Sources/MapboxCoreNavigation/Resources/<lang>.lproj/Localizable.strings
source_file = Sources/MapboxCoreNavigation/Resources/Base.lproj/Localizable.strings
source_lang = en

[mapbox-navigation-ios.ExampleMainStrings]
Expand All @@ -26,6 +26,6 @@ source_file = Example/en.lproj/Main.strings
source_lang = en

[mapbox-navigation-ios.navigationstrings]
file_filter = MapboxNavigation/Resources/<lang>.lproj/Navigation.strings
source_file = MapboxNavigation/Resources/Base.lproj/Navigation.strings
file_filter = Sources/MapboxNavigation/Resources/<lang>.lproj/Navigation.strings
source_file = Sources/MapboxNavigation/Resources/Base.lproj/Navigation.strings
source_lang = en
4 changes: 2 additions & 2 deletions Bench/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleVersion</key>
<string>42</string>
<string>43</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
Expand Down
4 changes: 2 additions & 2 deletions BenchTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleVersion</key>
<string>42</string>
<string>43</string>
</dict>
</plist>
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes to the Mapbox Navigation SDK for iOS

## v1.2.2

* Fixed an issue where a subclass of `NavigationRouteOptions` would turn into an ordinary `RouteOptions` when rerouting the user. ([#3192](https://github.com/mapbox/mapbox-navigation-ios/pull/3192))

## v1.2.1

* Increased the minimum versions of `MapboxNavigationNative` to v30.0 and `MapboxCommon` to v9.2.0. ([#2793](https://github.com/mapbox/mapbox-navigation-ios/pull/2793))
Expand Down Expand Up @@ -80,7 +84,7 @@

### Packaging

* By default, usage of Mapbox APIs is now [billed](https://www.mapbox.com/pricing/#navmaus) together based on [monthly active users](https://docs.mapbox.com/help/glossary/monthly-active-users/) rather than individually by HTTP request. Learn more in the [pricing by product documentation](https://docs.mapbox.com/accounts/overview/pricing/#navigation-sdk-for-ios-and-android). ([#2405](https://github.com/mapbox/mapbox-navigation-ios/pull/2405))
* By default, usage of Mapbox APIs is now [billed](https://www.mapbox.com/pricing/#navmaus) together based on [monthly active users](https://docs.mapbox.com/help/glossary/monthly-active-users/) rather than individually by HTTP request. Learn more in the [pricing guide](https://docs.mapbox.com/ios/navigation/guides/pricing/). ([#2405](https://github.com/mapbox/mapbox-navigation-ios/pull/2405))
* Carthage v0.35 or above is now required for installing this SDK if you use Carthage. ([`81a36d0`](https://github.com/mapbox/mapbox-navigation-ios/commit/81a36d090e8a0602b7144ee7697b7857675b496f))
* MapboxNavigation depends on Mapbox Maps SDK for iOS v6.0.0, and MapboxCoreNavigation depends on builds of MapboxNavigationNative and MapboxCommon that require authentication. Before CocoaPods or Carthage can download Mapbox.framework, MapboxNavigationNative.framework, and MapboxCommon.framework, you need to create a special-purpose access token. See [the updated installation instructions in the readme](./README.md#installing-the-latest-prerelease) for more details. ([#2437](https://github.com/mapbox/mapbox-navigation-ios/pull/2437), [#2477](https://github.com/mapbox/mapbox-navigation-ios/pull/2477))
* If you install this SDK using Carthage, you need to also add MapboxCommon.framework to your application target’s Embed Frameworks build phase. ([#2477](https://github.com/mapbox/mapbox-navigation-ios/pull/2477))
Expand Down
4 changes: 2 additions & 2 deletions Cartfile.private
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github "mapbox/MapboxGeocoder.swift" ~> 0.10
github "Quick/Quick" ~> 2.0
github "Quick/Nimble" ~> 8.0
github "Quick/Quick" ~> 3.1.2
github "Quick/Nimble" ~> 9.0.1
github "CedarBDD/Cedar" ~> 1.0
github "linksmt/OHHTTPStubs" "563f48d3fab84ef04639649c770b00f4fa502cca"
github "Udumft/SnappyShrimp" "xcode-11-4-build"
8 changes: 4 additions & 4 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ binary "https://api.mapbox.com/downloads/v2/carthage/mobile-maps/mapbox-ios-sdk-
binary "https://api.mapbox.com/downloads/v2/carthage/mobile-navigation-native/MapboxNavigationNative.json" "30.0.0"
binary "https://www.mapbox.com/ios-sdk/MapboxAccounts.json" "2.3.1"
github "CedarBDD/Cedar" "v1.0"
github "Quick/Nimble" "v8.1.2"
github "Quick/Quick" "v2.2.1"
github "Quick/Nimble" "v9.2.0"
github "Quick/Quick" "v3.1.2"
github "Udumft/SnappyShrimp" "66f3e3ba70370ad5e889ac8ed72a8730ca79958e"
github "Udumft/SwiftCLI" "da19d2a16cd5aa838d8fb7256e28c171bc67dd82"
github "ceeK/Solar" "2.1.0"
github "ceeK/Solar" "2.2.0"
github "linksmt/OHHTTPStubs" "563f48d3fab84ef04639649c770b00f4fa502cca"
github "mapbox/MapboxGeocoder.swift" "v0.10.2"
github "mapbox/mapbox-directions-swift" "v1.2.0"
github "mapbox/mapbox-events-ios" "v0.10.7"
github "mapbox/mapbox-events-ios" "v0.10.8"
github "mapbox/mapbox-speech-swift" "v1.0.0"
github "mapbox/turf-swift" "v1.2.0"
github "raphaelmor/Polyline" "v5.0.2"
Expand Down
4 changes: 2 additions & 2 deletions Example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleVersion</key>
<string>42</string>
<string>43</string>
<key>LSApplicationCategoryType</key>
<string></string>
<key>LSRequiresIPhoneOS</key>
Expand Down
2 changes: 1 addition & 1 deletion MapboxCoreNavigation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

s.name = "MapboxCoreNavigation"
s.version = '1.2.1'
s.version = '1.2.2'
s.summary = "Core components for turn-by-turn navigation on iOS."

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions MapboxCoreNavigation/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>CFBundleVersion</key>
<string>42</string>
<string>43</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
5 changes: 4 additions & 1 deletion MapboxCoreNavigation/NavigationRouteOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import MapboxDirections
A `NavigationRouteOptions` object specifies turn-by-turn-optimized criteria for results returned by the Mapbox Directions API.

`NavigationRouteOptions` is a subclass of `RouteOptions` that has been optimized for navigation. Pass an instance of this class into the `Directions.calculate(_:completionHandler:)` method.
- note: `NavigationRouteOptions` is designed to be used with the `Directions` and `NavigationDirections` classes for specifying routing criteria. To customize the user experience in a `NavigationViewController`, use the `NavigationOptions` class.

This class implements the `NSCopying` protocol by round-tripping the object through `JSONEncoder` and `JSONDecoder`. If you subclass `NavigationRouteOptions`, make sure any properties you add are accounted for in `Decodable(from:)` and `Encodable.encode(to:)`. If your subclass contains any customizations that cannot be represented in JSON, make sure the subclass overrides `NSCopying.copy(with:)` to persist those customizations.

`NavigationRouteOptions` is designed to be used with the `Directions` and `NavigationDirections` classes for specifying routing criteria. To customize the user experience in a `NavigationViewController`, use the `NavigationOptions` class.
*/
open class NavigationRouteOptions: RouteOptions, OptimizedForNavigation {
/**
Expand Down
4 changes: 2 additions & 2 deletions MapboxCoreNavigation/RouteOptions.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ extension RouteOptions: NSCopying {
public func copy(with zone: NSZone? = nil) -> Any {
do {
let encodedOptions = try JSONEncoder().encode(self)
return try JSONDecoder().decode(RouteOptions.self, from: encodedOptions)
return try JSONDecoder().decode(type(of: self), from: encodedOptions)
} catch {
preconditionFailure("Unable to copy RouteOptions by round-tripping it through JSON")
preconditionFailure("Unable to copy \(type(of: self)) by round-tripping it through JSON: \(error)")
}
}

Expand Down
14 changes: 7 additions & 7 deletions MapboxCoreNavigationTests/CocoaPodsTest/PodInstall/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PODS:
- MapboxMobileEvents (~> 0.10.4)
- MapboxAccounts (2.3.1)
- MapboxCommon (9.2.0)
- MapboxCoreNavigation (1.2.1):
- MapboxCoreNavigation (1.2.2):
- MapboxAccounts (~> 2.3.0)
- MapboxDirections (~> 1.2.0)
- MapboxMobileEvents (~> 0.10.2)
Expand All @@ -12,10 +12,10 @@ PODS:
- MapboxDirections (1.2.0):
- Polyline (~> 5.0)
- Turf (~> 1.0)
- MapboxMobileEvents (0.10.7)
- MapboxNavigation (1.2.1):
- MapboxMobileEvents (0.10.8)
- MapboxNavigation (1.2.2):
- Mapbox-iOS-SDK (~> 6.0)
- MapboxCoreNavigation (= 1.2.1)
- MapboxCoreNavigation (= 1.2.2)
- MapboxMobileEvents (~> 0.10.2)
- MapboxSpeech (~> 1.0)
- Solar (~> 2.1)
Expand Down Expand Up @@ -53,10 +53,10 @@ SPEC CHECKSUMS:
Mapbox-iOS-SDK: 2563ed87ead6ec08f1c2090873977b8a7be335a8
MapboxAccounts: e40ef575df5d8b7ef33d0504ff2d393f4fde0455
MapboxCommon: 2c4ef00c10cba35302835423f4d63c6f3dea4bc4
MapboxCoreNavigation: d2e4d98b12f78e38d7ea7bb17d98e7892b623b84
MapboxCoreNavigation: ddbd8a2a342922d528255d56c7e3695ea4fab6ee
MapboxDirections: 383df0cd65784897c2269750a42d9654c832f0ce
MapboxMobileEvents: d0a581dedd8f47411cc65ea520b965e83914316e
MapboxNavigation: 3f2e34a79420c59b52f6a3b62073fd6e21a038d7
MapboxMobileEvents: 36ff53b135aac486eed94b61f813c7967a0c2c6f
MapboxNavigation: 7bee73c49288467cc461381c936a5b328c57782a
MapboxNavigationNative: ac20c0b74f14e88972c1e3da5445bf8ef97bc365
MapboxSpeech: 4b3aea42e35d056fae1d7ad847a9fc0f412d911e
Polyline: fce41d72e1146c41c6d081f7656827226f643dff
Expand Down
35 changes: 35 additions & 0 deletions MapboxCoreNavigationTests/Extensions/RouteOptionsTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
import XCTest
import CoreLocation
import MapboxDirections
@testable import MapboxCoreNavigation

/**
A hypothetical set of options optimized for golf carts.

This class uses options that may or may not be supported by the actual Mapbox Directions API.
*/
class GolfCartRouteOptions: NavigationRouteOptions {
override var urlQueryItems: [URLQueryItem] {
let maximumSpeed = Measurement(value: 20, unit: UnitSpeed.milesPerHour) // maximum legal speed in Ohio
let hourFromNow = Date().addingTimeInterval(60 * 60) // an hour from now
let hourFromNowString = ISO8601DateFormatter.string(from: hourFromNow, timeZone: .current, formatOptions: .withInternetDateTime)
return super.urlQueryItems + [
URLQueryItem(name: "maxspeed", value: String(maximumSpeed.converted(to: .kilometersPerHour).value)),
URLQueryItem(name: "depart_at", value: hourFromNowString),
URLQueryItem(name: "passengers", value: "3"),
]
}
}

class RouteOptionsTests: XCTestCase {
func testCopying() {
let coordinates: [CLLocationCoordinate2D] = [
.init(latitude: 0, longitude: 0),
.init(latitude: 1, longitude: 1),
]
let options = GolfCartRouteOptions(coordinates: coordinates, profileIdentifier: .automobile)
let copy = options.copy() as? GolfCartRouteOptions
XCTAssertNotNil(copy)
XCTAssertTrue(copy?.urlQueryItems.contains(URLQueryItem(name: "passengers", value: "3")) ?? false)
}
}
4 changes: 2 additions & 2 deletions MapboxCoreNavigationTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.2.1</string>
<string>1.2.2</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>Location Usage Description</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>Location Usage Description</string>
<key>CFBundleVersion</key>
<string>42</string>
<string>43</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion MapboxNavigation-Documentation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

s.name = "MapboxNavigation-Documentation"
s.version = '1.2.1'
s.version = '1.2.2'
s.summary = "Complete turn-by-turn navigation interface for iOS."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion MapboxNavigation.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

s.name = "MapboxNavigation"
s.version = '1.2.1'
s.version = '1.2.2'
s.summary = "Complete turn-by-turn navigation interface for iOS."

s.description = <<-DESC
Expand Down
24 changes: 14 additions & 10 deletions MapboxNavigation.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@
DA754E1823AC56E5007E16B5 /* MBXAccounts+CoreNavigationAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = DA754E1623AC56E5007E16B5 /* MBXAccounts+CoreNavigationAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; };
DA754E1923AC56E5007E16B5 /* MBXAccounts+CoreNavigationAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = DA754E1723AC56E5007E16B5 /* MBXAccounts+CoreNavigationAdditions.m */; };
DA8805002316EAED00B54D87 /* ViewController+GuidanceCards.swift in Sources */ = {isa = PBXBuildFile; fileRef = AED6285522CBE4CE00058A51 /* ViewController+GuidanceCards.swift */; };
DA7A97CF26A7613D001B6A9A /* RouteOptionsTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA7A97CE26A7613C001B6A9A /* RouteOptionsTests.swift */; };
DA8F3A7623B5D84900B56786 /* SpeedLimitView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8F3A7523B5D84900B56786 /* SpeedLimitView.swift */; };
DA8F3A7823B5DB7900B56786 /* SpeedLimitStyleKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA8F3A7723B5DB7900B56786 /* SpeedLimitStyleKit.swift */; };
DAA96D18215A961D00BEF703 /* route-doubling-back.json in Resources */ = {isa = PBXBuildFile; fileRef = DAA96D17215A961D00BEF703 /* route-doubling-back.json */; };
Expand Down Expand Up @@ -1001,6 +1002,7 @@
DA73F87820BF851B0067649B /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = de; path = Resources/de.lproj/Localizable.stringsdict; sourceTree = "<group>"; };
DA754E1623AC56E5007E16B5 /* MBXAccounts+CoreNavigationAdditions.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "MBXAccounts+CoreNavigationAdditions.h"; sourceTree = "<group>"; };
DA754E1723AC56E5007E16B5 /* MBXAccounts+CoreNavigationAdditions.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "MBXAccounts+CoreNavigationAdditions.m"; sourceTree = "<group>"; };
DA7A97CE26A7613C001B6A9A /* RouteOptionsTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RouteOptionsTests.swift; sourceTree = "<group>"; };
DA8264851F2AAD8400454B24 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Main.strings"; sourceTree = "<group>"; };
DA8264871F2AADC200454B24 /* zh-Hant */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Navigation.strings"; sourceTree = "<group>"; };
DA8F3A7523B5D84900B56786 /* SpeedLimitView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpeedLimitView.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1475,6 +1477,7 @@
3A163AE1249901D000D66A0D /* Extensions */ = {
isa = PBXGroup;
children = (
DA7A97CE26A7613C001B6A9A /* RouteOptionsTests.swift */,
3A163ADF249901C300D66A0D /* RouteStateTests.swift */,
);
path = Extensions;
Expand Down Expand Up @@ -2837,6 +2840,7 @@
C582BA2C2073E77E00647DAA /* StringTests.swift in Sources */,
3557506B21A826C600AEF9B6 /* OfflineRoutingTests.swift in Sources */,
352762A4225B751A0015B632 /* OptionsTests.swift in Sources */,
DA7A97CF26A7613D001B6A9A /* RouteOptionsTests.swift in Sources */,
8DB7EF6A2176674800DA83A3 /* MapboxNavigationServiceSpec.swift in Sources */,
5A8DB89624DE16A10041F863 /* SkuTokenProviderTests.swift in Sources */,
35EF782A212C324E001B4BB5 /* TunnelAuthorityTests.swift in Sources */,
Expand Down Expand Up @@ -3143,7 +3147,7 @@
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = GJZR2MEM28;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 42;
DYLIB_CURRENT_VERSION = 43;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand All @@ -3169,7 +3173,7 @@
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = GJZR2MEM28;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 42;
DYLIB_CURRENT_VERSION = 43;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -3414,12 +3418,12 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 42;
CURRENT_PROJECT_VERSION = 43;
DEBUG_INFORMATION_FORMAT = dwarf;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = GJZR2MEM28;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 42;
DYLIB_CURRENT_VERSION = 43;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -3453,11 +3457,11 @@
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 42;
CURRENT_PROJECT_VERSION = 43;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = GJZR2MEM28;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 42;
DYLIB_CURRENT_VERSION = 43;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -3570,7 +3574,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 42;
CURRENT_PROJECT_VERSION = 43;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -3635,7 +3639,7 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 42;
CURRENT_PROJECT_VERSION = 43;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down Expand Up @@ -3669,7 +3673,7 @@
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = GJZR2MEM28;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 42;
DYLIB_CURRENT_VERSION = 43;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down Expand Up @@ -3698,7 +3702,7 @@
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = GJZR2MEM28;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 42;
DYLIB_CURRENT_VERSION = 43;
DYLIB_INSTALL_NAME_BASE = "@rpath";
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
Expand Down
Loading