# mapbox-common-ios **Repository Path**: grandroutes/mapbox-common-ios ## Basic Information - **Project Name**: mapbox-common-ios - **Description**: 1111111111 - **Primary Language**: Unknown - **License**: BSL-1.0 - **Default Branch**: 19.0.0-snapshot - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-12-06 - **Last Updated**: 2024-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mapbox-common-ios ### 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` ```bash machine api.mapbox.com login mapbox password ``` ## Integration ##### Swift Package Manager ###### Using Xcode
Detailed Flow
###### Using SPM Package 📱🖥💻 ```swift .package(url: "https://github.com/mapbox/mapbox-common-ios.git", from: "19.0.0"), ``` ##### CocoaPods 📱🖥💻 ```ruby pod 'MapboxCommon', '19.0.0' ``` ##### Carthage 📱 Add the following code to your Cartfile. ```bash binary "https://api.mapbox.com/downloads/v2/carthage/mapbox-common/MapboxCommon-ios.json" == 19.0.0 ``` Then run the following command in the Terminal. ```bash carthage update --platform ios --use-netrc ```