diff options
author | Jordan Moncharmont <jormon@gmail.com> | 2016-02-04 14:48:01 -0800 |
---|---|---|
committer | Jordan Moncharmont <jormon@gmail.com> | 2016-02-04 14:48:01 -0800 |
commit | 48dbd48e772c4f770eddd75bef1eee298480a06a (patch) | |
tree | 7c3396e543e4340625c7d923ae6beada3f1782e7 | |
parent | 4d29c7d5cec6d6261431ea705ceab500768c3e3a (diff) | |
download | qtlocation-mapboxgl-48dbd48e772c4f770eddd75bef1eee298480a06a.tar.gz |
[ios] Explain prerelease testing in docs
Show how to point a podspec at an officially tagged pre-release.
-rw-r--r-- | platform/ios/INSTALL.md | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/platform/ios/INSTALL.md b/platform/ios/INSTALL.md index 5db1c865ef..9b5d306618 100644 --- a/platform/ios/INSTALL.md +++ b/platform/ios/INSTALL.md @@ -28,7 +28,7 @@ The Mapbox iOS SDK and iosapp demo application build against the iOS 7.0 SDK. Th ### Install -There are two ways to install the Mapbox iOS SDK: +There are a few ways to install the Mapbox iOS SDK: #### CocoaPods @@ -64,6 +64,15 @@ Currently, until [#1437](https://github.com/mapbox/mapbox-gl-native/issues/1437) 1. Run `pod update` to grab the newly-built library. + + +##### Testing Pre-Releases with CocoaPods + +To test pre-releases and/or betas, you can reference the pre-release like so in your Podfile: + + pod 'Mapbox-iOS-SDK', podspec: 'https://raw.githubusercontent.com/mapbox/mapbox-gl-native/<insert branch or tag>/ios/Mapbox-iOS-SDK.podspec' + + #### Dynamic framework This is the recommended workflow for manually integrating the SDK into an application targeting iOS 8 and above: |