-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathActiveLookSDK.podspec
27 lines (24 loc) · 1.06 KB
/
ActiveLookSDK.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
#
# Be sure to run `pod lib lint ActiveLookSDK.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'ActiveLookSDK'
s.version = '4.4.0'
s.summary = 'An iOS library to interact with ActiveLook eyewear'
s.description = <<-DESC
This CocoaPod provides the ability to connect to ActiveLook eyewear running
a firmware >= 4.0.0 and send various commands
DESC
s.homepage = 'https://github.com/ActiveLook/ios-sdk'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = { "Sylvain Romillon" => "[email protected]" }
s.source = { :git => 'https://github.com/ActiveLook/ios-sdk.git', :tag => s.version.to_s }
s.source_files = 'Sources/**/*'
s.swift_version = '5.0'
s.ios.deployment_target = '12.0'
s.watchos.deployment_target = '6.0'
end