diff options
author | Jason Wray <jason@mapbox.com> | 2017-02-20 17:50:56 -0500 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2017-02-21 16:10:00 -0500 |
commit | a1c477b4dbf16e3e691d35eedd3f5c7a4fbb9c5e (patch) | |
tree | 6f29eda2bb4b122898d5fea8edab8176ebfb7bdf /platform/ios/DEVELOPING.md | |
parent | c7975e6a18b397df9918687ef8c8d0f76d00be76 (diff) | |
download | qtlocation-mapboxgl-a1c477b4dbf16e3e691d35eedd3f5c7a4fbb9c5e.tar.gz |
[ios] Update docs for iOS 8 deployment target
Diffstat (limited to 'platform/ios/DEVELOPING.md')
-rw-r--r-- | platform/ios/DEVELOPING.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/ios/DEVELOPING.md b/platform/ios/DEVELOPING.md index b751dac95e..26ab807e04 100644 --- a/platform/ios/DEVELOPING.md +++ b/platform/ios/DEVELOPING.md @@ -4,7 +4,7 @@ This document explains how to build the Mapbox iOS SDK from source. It is intend ## Requirements -The Mapbox iOS SDK and iosapp demo application build against the iOS 7.0 SDK. The SDK is intended to run on iOS 7.0 and above, while iosapp is intended to run on iOS 8.0 and above due to the use of a dynamic framework. Both require Xcode on a computer running macOS. +The Mapbox iOS SDK and iosapp demo application require iOS 8.0 or above. The Mapbox iOS SDK requires Xcode 7.3 or above. The iosapp demo application requires Xcode 8.0 or above to build. @@ -52,7 +52,7 @@ You can customize the build output by passing the following arguments into the ` * `BUILDTYPE=Release` will optimize for distribution. Defaults to `Debug`. * `BUILD_DEVICE=false` builds only for the iOS Simulator. -* `FORMAT=dynamic` builds only a dynamic framework. `FORMAT=static` builds only a static framework, for compatibility with iOS 7.x. +* `FORMAT=dynamic` builds only a dynamic framework. `FORMAT=static` builds only a static framework, for legacy compatibility. * `SYMBOLS=NO` strips the build output of any debug symbols, yielding much smaller binaries. Defaults to `YES`. An example command that creates a dynamic framework suitable for eventual App Store distribution: |