File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11binary "https://www.mapbox.com/ios-sdk/Mapbox-iOS-SDK.json" ~> 5.5
22github "AliSoftware/OHHTTPStubs" ~> 9.0
3+ github "mapbox/mapbox-events-ios" ~> 0.10.2
Original file line number Diff line number Diff line change 11binary "https://www.mapbox.com/ios-sdk/Mapbox-iOS-SDK.json" "5.9.0"
22github "AliSoftware/OHHTTPStubs" "9.0.0"
3+ github "mapbox/mapbox-events-ios" "v0.10.8"
Original file line number Diff line number Diff line change 931931 );
932932 inputPaths = (
933933 "$(SRCROOT)/Carthage/Build/iOS/Mapbox.framework",
934+ "$(SRCROOT)/Carthage/Build/iOS/MapboxMobileEvents.framework",
934935 );
935936 name = "Copy Frameworks";
936937 outputPaths = (
937938 "$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/Mapbox.framework",
939+ "$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/MapboxMobileEvents.framework",
938940 );
939941 runOnlyForDeploymentPostprocessing = 0;
940942 shellPath = /bin/sh;
947949 );
948950 inputPaths = (
949951 "$(SRCROOT)/Carthage/Build/iOS/Mapbox.framework",
952+ "$(SRCROOT)/Carthage/Build/iOS/MapboxMobileEvents.framework",
950953 );
951954 name = "Copy Frameworks";
952955 outputPaths = (
Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ typealias JSONDictionary = [String: Any]
77public let MBGeocoderErrorDomain = " MBGeocoderErrorDomain "
88
99/// The Mapbox access token specified in the main application bundle’s Info.plist.
10- let defaultAccessToken = Bundle . main. infoDictionary ? [ " MGLMapboxAccessToken " ] as? String
10+ let defaultAccessToken =
11+ Bundle . main. object ( forInfoDictionaryKey: " MBXAccessToken " ) as? String ??
12+ Bundle . main. object ( forInfoDictionaryKey: " MGLMapboxAccessToken " ) as? String
1113
1214/// The user agent string for any HTTP requests performed directly within this library.
1315let userAgent : String = {
You can’t perform that action at this time.
0 commit comments