summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMinh Nguyễn <mxn@1ec5.org>2016-03-18 00:29:58 -0700
committerMinh Nguyễn <mxn@1ec5.org>2016-03-18 00:29:58 -0700
commitec072b437aa21315b174affb9eac03e2b845fc37 (patch)
treedb4a77ae35e7e6e98c31d069f2c8d28d57ff7765
parent115a5d10f90b7da1726e9cb274bfaf58f806e54d (diff)
downloadqtlocation-mapboxgl-ec072b437aa21315b174affb9eac03e2b845fc37.tar.gz
[ios] Copy dynamic framework .dSYM into distribution
-rw-r--r--CHANGELOG.md1
-rwxr-xr-xplatform/ios/scripts/package.sh4
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b11fdff490..78d42e8d2a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -66,6 +66,7 @@ Known issues:
- Fixed warping of dashed lines near sharp corners. ([#3914](https://github.com/mapbox/mapbox-gl-native/pull/3914))
- Telemetry location gathering now occurs only when the device is in motion. ([#4115](https://github.com/mapbox/mapbox-gl-native/pull/4115))
- An account’s monthly active users metric only counts a user once a map view is displayed to that user. ([#3713](https://github.com/mapbox/mapbox-gl-native/pull/3713))
+- A .dSYM bundle is included with the dynamic framework to facilitate symbolication of crash logs. ([#4379](https://github.com/mapbox/mapbox-gl-native/pull/4379))
- Updated documentation to reflect the requirement that you must embed the framework in the “Embedded Binaries” section in Xcode. ([#4011](https://github.com/mapbox/mapbox-gl-native/issues/4011))
- Polygons and polylines now default to using the map view’s tint color. ([#4028](https://github.com/mapbox/mapbox-gl-native/pull/4028))
- The user dot no longer lags when panning the map. ([#3683](https://github.com/mapbox/mapbox-gl-native/pull/3683))
diff --git a/platform/ios/scripts/package.sh b/platform/ios/scripts/package.sh
index 459de6d100..c4357c45de 100755
--- a/platform/ios/scripts/package.sh
+++ b/platform/ios/scripts/package.sh
@@ -147,6 +147,8 @@ if [[ "${BUILD_FOR_DEVICE}" == true ]]; then
cp -r \
gyp/build/${BUILDTYPE}-iphoneos/${NAME}.framework \
${OUTPUT}/dynamic/
+ cp -r gyp/build/${BUILDTYPE}-iphoneos/${NAME}.framework.dSYM \
+ ${OUTPUT}/dynamic/
step "Merging simulator dynamic library into device dynamic library…"
lipo \
@@ -170,6 +172,8 @@ else
cp -r \
gyp/build/${BUILDTYPE}-iphonesimulator/${NAME}.framework \
${OUTPUT}/dynamic/${NAME}.framework
+ cp -r gyp/build/${BUILDTYPE}-iphonesimulator/${NAME}.framework.dSYM \
+ ${OUTPUT}/dynamic/
fi
fi