Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 1.42 KB

README.md

File metadata and controls

61 lines (42 loc) · 1.42 KB

mapbox-common-ios

MapboxCommon provides common functionality among all Mapbox SDKs including:

To learn more about these SDKs please visit their repos on GitHub and the documentation at https://docs.mapbox.com/.

Prerequisites

Before you can download the Mapbox Common SDK, you need to create a token with DOWNLOAD:READ scope. Go to https://account.mapbox.com and click "Create token"

SPM, CocoaPods and Carthage

Insert or append the following to ~/.netrc

machine api.mapbox.com
  login mapbox
  password <TOKEN WITH DOWNLOAD:READ SCOPE>

Integration

Swift Package Manager
Using Xcode
Detailed Flow
Using SPM Package 📱🖥💻
.package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "24.7.1"),
CocoaPods 📱🖥💻
pod 'MapboxCommon', '24.7.1'
Carthage 📱

Add the following code to your Cartfile.

binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon.json" == 24.7.1

Then run the following command in the Terminal.

carthage update --platform ios --use-netrc