forked from hulop/blelocpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bleloc.podspec
21 lines (20 loc) · 868 Bytes
/
bleloc.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "bleloc"
s.version = "1.3.4-alpha"
s.summary = "Localization library"
s.homepage = "https://github.com/hulop/"
s.description = <<-DESC
This is a localization library for bluetooth le beacons.
DESC
s.license = "MIT"
s.author = "HULOP"
# s.source = { :git => "https://github.com/hulop/blelocpp.git", :tag => "v1.3.4-alpha" }
# s.preserve_path = "platform/ios/bleloc.framework"
# s.vendored_frameworks = "platform/ios/bleloc.framework"
s.source = { :http => "https://github.com/hulop/blelocpp/releases/download/v1.3.4-alpha/bleloc.framework.zip" }
s.preserve_path = "bleloc.framework"
s.vendored_frameworks = "bleloc.framework"
s.platforms = {:ios => "8.4"}
s.requires_arc = false
s.ios.frameworks = 'AVFoundation', 'AssetsLibrary', 'CoreMedia'
end