forked from delannoyk/SoundcloudSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoundcloud.podspec
More file actions
29 lines (24 loc) · 902 Bytes
/
Soundcloud.podspec
File metadata and controls
29 lines (24 loc) · 902 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
25
26
27
28
29
Pod::Spec.new do |s|
s.name = 'Soundcloud'
s.version = '0.7.1'
s.license = { :type => 'MIT' }
s.homepage = 'https://github.com/delannoyk/SoundcloudSDK'
s.authors = {
'Kevin Delannoy' => 'delannoyk@gmail.com'
}
s.summary = 'SoundcloudSDK is a framework written in Swift over Soundcloud API.'
# Source Info
s.source = {
:git => 'https://github.com/delannoyk/SoundcloudSDK.git',
:tag => s.version.to_s
}
s.source_files = 'sources/SoundcloudSDK/**/*.swift'
s.ios.deployment_target = '8.0'
s.ios.dependency 'UICKeyChainStore', '~> 2.0.6'
s.ios.dependency '1PasswordExtension', '~> 1.5'
s.osx.deployment_target = '10.10'
s.osx.dependency 'UICKeyChainStore', '~> 2.0.6'
s.tvos.deployment_target = '9.0'
s.tvos.exclude_files = 'sources/SoundcloudSDK/views/SoundcloudWebViewController.swift'
s.requires_arc = true
end