-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathSparkSetup.podspec
45 lines (36 loc) · 1.86 KB
/
SparkSetup.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
39
40
41
42
43
44
45
Pod::Spec.new do |s|
s.name = "SparkSetup"
s.version = "0.7.2"
s.summary = "Particle iOS Device Setup library for easy integration of setup process for Particle devices in your app"
s.description = <<-DESC
Particle (formerly Spark) Device Setup library for integrating setup process of Particle devices in your app
This library will allow you to easily invoke a standalone setup wizard UI for setting up
Particle devices (photon) from within your app. Setup UI look & feel can be easily customized with custom brand
logos/colors/fonts/texts and instructional video.
DEPRECATED
DESC
s.homepage = "https://github.com/spark/spark-setup-ios"
s.screenshots = "http://i58.tinypic.com/15yhdeb.jpg"
s.license = 'Apache 2.0'
s.author = { "Particle" => "[email protected]" }
s.source = { :git => "https://github.com/spark/spark-setup-ios.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/particle'
s.platform = :ios, '8.0'
s.requires_arc = true
s.public_header_files = 'Classes/*.h'
s.source_files = 'Classes/*.h'
s.resource_bundle = {'SparkSetup' => 'Resources/**/*.{xcassets,storyboard}'}
s.deprecated = true
s.deprecated_in_favor_of = 'ParticleSetup'
s.subspec 'Core' do |core|
core.source_files = 'Classes/User/**/*.{h,m}', 'Classes/UI/**/*'
core.dependency 'Spark-SDK'
core.dependency '1PasswordExtension'
core.dependency 'SparkSetup/Comm'
core.ios.frameworks = 'UIKit'
end
s.subspec 'Comm' do |comm|
comm.source_files = 'Classes/Comm/**/*'
comm.ios.frameworks = 'SystemConfiguration', 'Security'
end
end