summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-02-18 14:41:47 -0800
committerMinh Nguyễn <mxn@1ec5.org>2016-02-18 14:41:47 -0800
commit1c25dc098e837256a990225f2a2cc82a1eb6d1e3 (patch)
tree2172d0de37cc5e01a8253096abc8bfac205191b1 /ios
parenta503048457d154fff091f2e507c9b898efdd28fe (diff)
downloadqtlocation-mapboxgl-1c25dc098e837256a990225f2a2cc82a1eb6d1e3.tar.gz
[ios] Import required frameworks with static framework umbrella
The umbrella header inside the static framework now imports the required iOS SDK frameworks so manual linking is unnecessary. This change corrects a regression introduced in #3183, when the umbrella header used in version 3.0.1 was removed.
Diffstat (limited to 'ios')
-rw-r--r--ios/docs/pod-README.md9
-rw-r--r--ios/framework/Mapbox-static.h3
2 files changed, 5 insertions, 7 deletions
diff --git a/ios/docs/pod-README.md b/ios/docs/pod-README.md
index ff1cd11999..9a901dec0a 100644
--- a/ios/docs/pod-README.md
+++ b/ios/docs/pod-README.md
@@ -16,7 +16,7 @@ The Mapbox iOS SDK may be installed as either a dynamic framework or a static fr
This is the recommended workflow for manually integrating the SDK into an application targeting iOS 8 and above:
-1. Open the project editor and select your application target. Drag `Mapbox.framework` from the `dynamic` folder into the “Embedded Binaries” section of the General tab. In the sheet that appears, make sure “Copy items if needed” is checked, then click Finish.
+1. Open the project editor and select your application target. Drag `Mapbox.framework` from the `dynamic` folder into the “Embedded Binaries” section of the General tab. (Don’t drag it into the “Linked Frameworks and Libraries” section; Xcode will add it there automatically.) In the sheet that appears, make sure “Copy items if needed” is checked, then click Finish.
1. In the Build Phases tab, click the + button at the top and select “New Run Script Phase”. Enter the following code into the script text field:
@@ -33,18 +33,13 @@ bash "${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Mapbox.framework/strip-fra
If your application targets iOS 7.x, you’ll need to install the static framework instead:
-1. Open the project editor and select your application target. Drag `Mapbox.framework` from the `static` folder into the “Embedded Binaries” section of the General tab. In the sheet that appears, make sure “Copy items if needed” is checked, then click Finish.
+1. Open the project editor and select your application target. Drag `Mapbox.framework` from the `static` folder into the “Embedded Binaries” section of the General tab. (Don’t drag it into the “Linked Frameworks and Libraries” section; Xcode will add it there automatically.) In the sheet that appears, make sure “Copy items if needed” is checked, then click Finish.
1. Add the following Cocoa Touch frameworks and libraries to the “Linked Frameworks and Libraries” section:
- `GLKit.framework`
- `ImageIO.framework`
- `MobileCoreServices.framework`
- - `QuartzCore.framework`
- - `SystemConfiguration.framework`
- - `libc++.tbd`
- - `libsqlite3.tbd`
- - `libz.tbd`
1. In the Build Settings tab, add `-ObjC` to the “Other Linker Flags” (`OTHER_LDFLAGS`) build setting.
diff --git a/ios/framework/Mapbox-static.h b/ios/framework/Mapbox-static.h
new file mode 100644
index 0000000000..d3674b0b61
--- /dev/null
+++ b/ios/framework/Mapbox-static.h
@@ -0,0 +1,3 @@
+#import <GLKit/GLKit.h>
+#import <ImageIO/ImageIO.h>
+#import <MobileCoreServices/MobileCoreServices.h>