-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathWRLD.podspec
More file actions
32 lines (23 loc) · 986 Bytes
/
WRLD.podspec
File metadata and controls
32 lines (23 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#
# run `pod spec lint WRLD.podspec' before submitting.
#
Pod::Spec.new do |s|
s.name = 'WRLD'
s.version = '##WRLD_IOS_SDK_VERSION##'
s.summary = '3D maps and indoor maps for iOS'
s.description = 'Display 3D outdoor and indoor maps and markers using OpenGL'
s.homepage = 'https://github.com/wrld3d/ios-api'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'BSD 2-Clause', :file => 'LICENSE.md' }
s.author = { 'WRLD' => 'support@wrld3d.com' }
s.documentation_url = 'https://docs.wrld3d.com/ios/latest/docs/api/'
s.source = {
:http => "https://s3.amazonaws.com/eegeo-static/wrld-ios-sdk/builds/wrld-ios-sdk-v#{s.version.to_s}.zip",
:flatten => true
}
s.platform = :ios
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.vendored_frameworks = 'Wrld.framework', 'WrldWidgets.framework'
s.module_name = 'Wrld'
end