summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorJustin R. Miller <incanus@codesorcery.net>2015-12-03 16:01:35 -0800
committerJustin R. Miller <incanus@codesorcery.net>2015-12-07 12:14:29 -0800
commit032e3a66f35aa4fd3954a700d5753cd21e06a59d (patch)
tree712176c5c57816427bb3ae767e14375964ed8d92 /ios
parent203b443d2699c44115ce3f2b7234185e592ad529 (diff)
downloadqtlocation-mapboxgl-032e3a66f35aa4fd3954a700d5753cd21e06a59d.tar.gz
fixes #3181: move from vendored lib to framework
- Add license file to framework build step to satisfy CocoaPods linting. - Log version when rolling framework (refs #3046). - fixes #1426: get rid of dummy file since we make our own framework.
Diffstat (limited to 'ios')
-rw-r--r--ios/Mapbox-iOS-SDK.podspec7
1 files changed, 3 insertions, 4 deletions
diff --git a/ios/Mapbox-iOS-SDK.podspec b/ios/Mapbox-iOS-SDK.podspec
index 091dd33ad2..a470ff53a9 100644
--- a/ios/Mapbox-iOS-SDK.podspec
+++ b/ios/Mapbox-iOS-SDK.podspec
@@ -13,7 +13,7 @@ Pod::Spec.new do |m|
m.documentation_url = 'https://www.mapbox.com/ios-sdk/'
m.source = {
- :http => "https://mapbox.s3.amazonaws.com/mapbox-gl-native/ios/builds/mapbox-ios-sdk-#{m.version.to_s}.zip",
+ :http => "https://mapbox.s3.amazonaws.com/mapbox-gl-native/ios/builds/Mapbox.framework-#{m.version.to_s}.zip",
:flatten => true
}
@@ -23,9 +23,8 @@ Pod::Spec.new do |m|
m.requires_arc = true
m.preserve_paths = '**'
- m.source_files = 'Headers/*.h', 'MGLDummy.m'
- m.resource_bundle = { 'Mapbox' => 'Mapbox.bundle/*' }
- m.vendored_library = 'libMapbox.a'
+ m.resource_bundle = { 'Mapbox' => 'Mapbox.framework/Mapbox.bundle/*' }
+ m.vendored_frameworks = 'Mapbox.framework'
m.module_name = 'Mapbox'
m.frameworks = 'CoreLocation', 'GLKit', 'ImageIO', 'MobileCoreServices', 'QuartzCore', 'SystemConfiguration'