forked from Estimote/iOS-Indoor-SDK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEstimoteIndoorSDK.podspec
38 lines (29 loc) · 1.53 KB
/
EstimoteIndoorSDK.podspec
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
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = "EstimoteIndoorSDK"
s.version = "1.0.0"
s.summary = "Indoor Location SDK allows real-time beacon-based mapping and indoor location"
s.description = <<-DESC
Map any space using Estimote Beacons and visualize your location within it in real-time.
DESC
s.homepage = "http://estimote.com/indoor"
s.license = {
:type => 'Copyright',
:text => <<-LICENSE
Copyright 2014 Estimote, Inc. All rights reserved.
LICENSE
}
s.author = { "Estimote, Inc" => "[email protected]" }
s.social_media_url = "http://twitter.com/estimote"
s.platform = :ios
s.ios.deployment_target = '7.0'
s.source = { :git => "https://github.com/Estimote/iOS-Indoor-SDK.git", :tag => "1.0.0" }
s.source_files = 'EstimoteIndoorLocationSDK/Headers/*.h'
s.resources = 'EstimoteIndoorLocationSDK/Resources/**/*'
s.preserve_paths = 'EstimoteIndoorLocationSDK/libEstimoteIndoorSDK.a', 'Resources/**/*'
s.vendored_libraries = 'EstimoteIndoorLocationSDK/libEstimoteIndoorSDK.a'
s.frameworks = 'UIKit', 'Foundation', 'SystemConfiguration', 'MobileCoreServices', 'CoreLocation', 'CoreGraphics', 'CoreBluetooth', 'CoreMotion', 'MessageUI', 'MediaPlayer', 'AVFoundation', 'AudioToolbox'
s.requires_arc = true
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '"$(PODS_ROOT)/EstimoteIndoorLocationSDK"',
'HEADER_SEARCH_PATHS' => '"${PODS_ROOT}/Headers/EstimoteIndoorLocationSDK"' }
s.dependency "EstimoteSDK", "~> 2.1"
end