Skip to content

Commit 3914d13

Browse files
authored
Add support for building with Xcode 16 beta. (#4709)
1 parent c318589 commit 3914d13

File tree

6 files changed

+64
-29
lines changed

6 files changed

+64
-29
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changes to the Mapbox Navigation SDK for iOS
22

3+
## v2.18.4
4+
5+
### Packaging
6+
7+
* Add support for building with Xcode 16 beta.
8+
39
## v2.18.3
410

511
### Packaging

MapboxNavigation-SPM.xcodeproj/project.pbxproj

+2
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595

9696
/* Begin PBXFileReference section */
9797
2C3ADC4F29BA8B19001AA409 /* multileg-route-alternatives.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; path = "multileg-route-alternatives.json"; sourceTree = "<group>"; };
98+
2CB34E3A2C7348AC0089BC20 /* Example.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; name = Example.xctestplan; path = Tests/Example.xctestplan; sourceTree = "<group>"; };
9899
35002D5D1E5F6ABB0090E733 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
99100
35002D5F1E5F6ADB0090E733 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
100101
35002D671E5F6B1B0090E733 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
@@ -417,6 +418,7 @@
417418
C5ADFBBF1DDCC7840011824B = {
418419
isa = PBXGroup;
419420
children = (
421+
2CB34E3A2C7348AC0089BC20 /* Example.xctestplan */,
420422
8DF8E4DD2202694100B29FEF /* Documents */,
421423
35B711DB1E5E7B70001EDA8D /* Example */,
422424
DA1A1AFC25E085D40097BBD7 /* */,

MapboxNavigation-SPM.xcodeproj/xcshareddata/xcschemes/Example-CarPlay.xcscheme

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
33
LastUpgradeVersion = "1400"
4-
version = "1.3">
4+
version = "1.7">
55
<BuildAction
66
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
@@ -37,6 +37,12 @@
3737
ReferencedContainer = "container:MapboxNavigation-SPM.xcodeproj">
3838
</BuildableReference>
3939
</MacroExpansion>
40+
<TestPlans>
41+
<TestPlanReference
42+
reference = "container:Tests/Example.xctestplan"
43+
default = "YES">
44+
</TestPlanReference>
45+
</TestPlans>
4046
<Testables>
4147
<TestableReference
4248
skipped = "NO">

MapboxNavigation-SPM.xcodeproj/xcshareddata/xcschemes/Example.xcscheme

+7-23
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
33
LastUpgradeVersion = "1400"
4-
version = "1.3">
4+
version = "1.7">
55
<BuildAction
66
parallelizeBuildables = "YES"
77
buildImplicitDependencies = "YES">
@@ -37,28 +37,12 @@
3737
ReferencedContainer = "container:MapboxNavigation-SPM.xcodeproj">
3838
</BuildableReference>
3939
</MacroExpansion>
40-
<Testables>
41-
<TestableReference
42-
skipped = "NO">
43-
<BuildableReference
44-
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "MapboxNavigationTests"
46-
BuildableName = "MapboxNavigationTests"
47-
BlueprintName = "MapboxNavigationTests"
48-
ReferencedContainer = "container:">
49-
</BuildableReference>
50-
</TestableReference>
51-
<TestableReference
52-
skipped = "NO">
53-
<BuildableReference
54-
BuildableIdentifier = "primary"
55-
BlueprintIdentifier = "MapboxCoreNavigationTests"
56-
BuildableName = "MapboxCoreNavigationTests"
57-
BlueprintName = "MapboxCoreNavigationTests"
58-
ReferencedContainer = "container:">
59-
</BuildableReference>
60-
</TestableReference>
61-
</Testables>
40+
<TestPlans>
41+
<TestPlanReference
42+
reference = "container:Tests/Example.xctestplan"
43+
default = "YES">
44+
</TestPlanReference>
45+
</TestPlans>
6246
</TestAction>
6347
<LaunchAction
6448
buildConfiguration = "Debug"

Sources/MapboxNavigation/Expression.swift

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1+
import Foundation
12
import MapboxMaps
23

3-
extension Expression {
4-
5-
static func routeLineWidthExpression(_ multiplier: Double = 1.0) -> Expression {
4+
extension MapboxMaps.Expression {
5+
static func routeLineWidthExpression(_ multiplier: Double = 1.0) -> MapboxMaps.Expression {
66
return Exp(.interpolate) {
77
Exp(.linear)
88
Exp(.zoom)
99
RouteLineWidthByZoomLevel.multiplied(by: multiplier)
1010
}
1111
}
1212

13-
static func routeLineGradientExpression(_ gradientStops: [Double: UIColor], lineBaseColor: UIColor, isSoft: Bool = false) -> Expression {
13+
static func routeLineGradientExpression(_ gradientStops: [Double: UIColor], lineBaseColor: UIColor, isSoft: Bool = false) -> MapboxMaps.Expression {
1414
if isSoft {
1515
return Exp(.interpolate) {
1616
Exp(.linear)
@@ -26,7 +26,7 @@ extension Expression {
2626
}
2727
}
2828

29-
static func buildingExtrusionHeightExpression(_ hightProperty: String) -> Expression {
29+
static func buildingExtrusionHeightExpression(_ hightProperty: String) -> MapboxMaps.Expression {
3030
return Exp(.interpolate) {
3131
Exp(.linear)
3232
Exp(.zoom)

Tests/Example.xctestplan

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"configurations" : [
3+
{
4+
"id" : "F90E3D86-34A5-403E-B872-2B0EDB8EE2B6",
5+
"name" : "Configuration 1",
6+
"options" : {
7+
8+
}
9+
}
10+
],
11+
"defaultOptions" : {
12+
"codeCoverage" : false,
13+
"language" : "en",
14+
"targetForVariableExpansion" : {
15+
"containerPath" : "container:MapboxNavigation-SPM.xcodeproj",
16+
"identifier" : "C53F2EDE20EBC95600D9798F",
17+
"name" : "Example-CarPlay"
18+
}
19+
},
20+
"testTargets" : [
21+
{
22+
"target" : {
23+
"containerPath" : "container:",
24+
"identifier" : "MapboxNavigationTests",
25+
"name" : "MapboxNavigationTests"
26+
}
27+
},
28+
{
29+
"target" : {
30+
"containerPath" : "container:",
31+
"identifier" : "MapboxCoreNavigationTests",
32+
"name" : "MapboxCoreNavigationTests"
33+
}
34+
}
35+
],
36+
"version" : 1
37+
}

0 commit comments

Comments
 (0)