Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit 276798c

Browse files
Fix PBX file; add missing brace
1 parent 51765c3 commit 276798c

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Examples.xcodeproj/project.pbxproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1069,7 +1069,7 @@
10691069
};
10701070
9619628B1C581700002D3DAB = {
10711071
CreatedOnToolsVersion = 7.3;
1072-
DevelopmentTeam = GM7DBR7Y3J;
1072+
DevelopmentTeam = GJZR2MEM28;
10731073
LastSwiftMigration = 0900;
10741074
ProvisioningStyle = Automatic;
10751075
};
@@ -1247,7 +1247,7 @@
12471247
files = (
12481248
);
12491249
inputPaths = (
1250-
"${SRCROOT}/Pods/Target Support Files/Pods-DocsCode/Pods-DocsCode-frameworks.sh",
1250+
"${PODS_ROOT}/Target Support Files/Pods-DocsCode/Pods-DocsCode-frameworks.sh",
12511251
"${PODS_ROOT}/Mapbox-iOS-SDK/dynamic/Mapbox.framework",
12521252
"${PODS_ROOT}/Mapbox-iOS-SDK/dynamic/Mapbox.framework.dSYM",
12531253
"${BUILT_PRODUCTS_DIR}/MapboxCoreNavigation/MapboxCoreNavigation.framework",
@@ -1274,7 +1274,7 @@
12741274
);
12751275
runOnlyForDeploymentPostprocessing = 0;
12761276
shellPath = /bin/sh;
1277-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DocsCode/Pods-DocsCode-frameworks.sh\"\n";
1277+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DocsCode/Pods-DocsCode-frameworks.sh\"\n";
12781278
showEnvVarsInLog = 0;
12791279
};
12801280
B8CEDEEE83C3362F5C012330 /* [CP] Embed Pods Frameworks */ = {
@@ -1283,7 +1283,7 @@
12831283
files = (
12841284
);
12851285
inputPaths = (
1286-
"${SRCROOT}/Pods/Target Support Files/Pods-Examples/Pods-Examples-frameworks.sh",
1286+
"${PODS_ROOT}/Target Support Files/Pods-Examples/Pods-Examples-frameworks.sh",
12871287
"${PODS_ROOT}/Mapbox-iOS-SDK/dynamic/Mapbox.framework",
12881288
"${PODS_ROOT}/Mapbox-iOS-SDK/dynamic/Mapbox.framework.dSYM",
12891289
);
@@ -1294,7 +1294,7 @@
12941294
);
12951295
runOnlyForDeploymentPostprocessing = 0;
12961296
shellPath = /bin/sh;
1297-
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-Examples/Pods-Examples-frameworks.sh\"\n";
1297+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Examples/Pods-Examples-frameworks.sh\"\n";
12981298
showEnvVarsInLog = 0;
12991299
};
13001300
D8896F91CDF96A2DF29EF047 /* [CP] Check Pods Manifest.lock */ = {
@@ -1736,7 +1736,7 @@
17361736
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
17371737
CODE_SIGN_STYLE = Automatic;
17381738
CURRENT_PROJECT_VERSION = 0;
1739-
DEVELOPMENT_TEAM = GM7DBR7Y3J;
1739+
DEVELOPMENT_TEAM = GJZR2MEM28;
17401740
FRAMEWORK_SEARCH_PATHS = (
17411741
"$(inherited)",
17421742
"$(PROJECT_DIR)",
@@ -1761,7 +1761,7 @@
17611761
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
17621762
CODE_SIGN_STYLE = Automatic;
17631763
CURRENT_PROJECT_VERSION = 0;
1764-
DEVELOPMENT_TEAM = GM7DBR7Y3J;
1764+
DEVELOPMENT_TEAM = GJZR2MEM28;
17651765
FRAMEWORK_SEARCH_PATHS = (
17661766
"$(inherited)",
17671767
"$(PROJECT_DIR)",

Examples/Swift/SymbolLayerZOrderExample.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ func mapView(_ mapView: MGLMapView, didFinishLoading style: MGLStyle) {
3535
// Add icons to the map's style.
3636
style.setImage(UIImage(named: "oval")!, forName: "oval")
3737
style.setImage(UIImage(named: "squircle")!, forName: "squircle")
38-
style.setImage(UIImage(named: "star")!, forName: "star"
39-
38+
style.setImage(UIImage(named: "star")!, forName: "star")
39+
4040
let feature1 = MGLPointFeature()
4141
feature1.coordinate = CLLocationCoordinate2DMake(-41.292650, 174.778768)
4242
feature1.attributes = ["id": "squircle"]

0 commit comments

Comments
 (0)