-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathKKBOXOpenAPI.podspec
More file actions
24 lines (23 loc) · 980 Bytes
/
KKBOXOpenAPI.podspec
File metadata and controls
24 lines (23 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "KKBOXOpenAPI"
s.version = "1.3.1"
s.license = {:type => 'Apache 2.0', :file => "LICENSE.txt"}
s.summary = "KKBOX's Open API SDK for iOS, macOS, watchOS and tvOS."
s.description = <<-DESC
KKBOX's Open API SDK for developers working on Apple platforms such as iOS, macOS, watchOS and tvOS.
DESC
s.homepage = "https://github.com/KKBOX/OpenAPI-ObjectiveC/"
s.documentation_url = 'https://kkbox.github.io/OpenAPI-ObjectiveC/'
s.author = {"zonble" => "zonble@gmail.com"}
s.source = {:git => "https://github.com/KKBOX/OpenAPI-ObjectiveC.git", :tag => s.version.to_s}
s.platform = :ios, :tvos, :osx
s.ios.deployment_target = '7.0'
s.osx.deployment_target = '10.9'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.requires_arc = true
s.source_files = 'Sources/KKBOXOpenAPI/**/*.{h,m}'
s.ios.frameworks = 'UIKit'
s.osx.frameworks = 'AppKit'
s.tvos.frameworks = 'UIKit'
end