forked from NordicSemiconductor/IOS-Nordic-Thingy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIOSThingyLibrary.podspec
26 lines (22 loc) · 1.29 KB
/
IOSThingyLibrary.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
Pod::Spec.new do |s|
s.name = 'IOSThingyLibrary'
s.version = '1.4.0'
s.summary = 'A Swift 4.2 SDK implementation for the Nordic:Thingy52 produced by Nordic Semiconductor'
s.description = <<-DESC
This is a mobile SDK for the Thingy:52 devices developed by Nordic Semiconductor, the Thingy
is a development board with a vast amount of sensors, an input button and a RGB LED, fully
customizable thanks to its Bluetooth API that requires no firmware programming knowledge.
This SDK takes it a step further by allowing developers create their own Thingy:52 compatible
applications with ease.
DESC
s.homepage = 'https://www.nordicsemi.com'
# s.screenshots = 'https://developer.nordicsemi.com/thingy/screenshots'
s.license = { :type => 'Nordic 5-Clause', :file => 'LICENSE' }
s.author = { 'Mostafa Berg' => '[email protected]' , 'Aleksander Nowakowski' => '[email protected]'}
s.source = { :git => 'https://github.com/NordicSemiconductor/IOS-Nordic-Thingy.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/nordictweets'
s.swift_version = '4.2'
s.ios.deployment_target = '9.0'
s.source_files = 'IOSThingyLibrary/Classes/**/*'
s.dependency 'iOSDFULibrary', '~> 4.3'
end