diff options
author | Justin R. Miller <incanus@codesorcery.net> | 2015-12-03 16:01:35 -0800 |
---|---|---|
committer | Justin R. Miller <incanus@codesorcery.net> | 2015-12-07 12:16:41 -0800 |
commit | 9507bc038eb71fe10c0a9e0739ebcef7dbfc7bca (patch) | |
tree | 94afdaa299c271ad0113e8ae333176bdfe34cc4e /ios | |
parent | fec0283ac8f6929f90f36298fd1e4f0d07c9fb27 (diff) | |
download | qtlocation-mapboxgl-9507bc038eb71fe10c0a9e0739ebcef7dbfc7bca.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.podspec | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ios/Mapbox-iOS-SDK.podspec b/ios/Mapbox-iOS-SDK.podspec index 7dbf9cc55a..4beabc8bb1 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' |