-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathABMSoundCloudAPI.podspec
35 lines (31 loc) · 1.64 KB
/
ABMSoundCloudAPI.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
Pod::Spec.new do |s|
s.name = "ABMSoundCloudAPI"
s.version = "1.0.2"
s.summary = "Own library to handle oauth2 authentication and basic operations for SoundCloud API."
s.description = <<-DESC
Since SoundCloud decided not to maintain any longer its library for iOS I diceded to create my own one. Right now it is supported:
* Authentication usign internal webview
* Searching for songs
* Download a song
* Get User Playlists
* Get Playlists given playlist ID
* Get song info given song ID
* Follow user given user ID
DESC
s.homepage = "https://github.com/andresbrun/ABMSoundCloudAPI"
s.screenshots = "https://raw.githubusercontent.com/andresbrun/ABMSoundCloudAPI/master/Example/screenshots/screenshot_1.png",
"https://raw.githubusercontent.com/andresbrun/ABMSoundCloudAPI/master/Example/screenshots/screenshot_2.png",
"https://raw.githubusercontent.com/andresbrun/ABMSoundCloudAPI/master/Example/screenshots/screenshot_3.png",
"https://raw.githubusercontent.com/andresbrun/ABMSoundCloudAPI/master/Example/screenshots/screenshot_4.png"
s.license = 'MIT'
s.author = { "Andres Brun Moreno" => "[email protected]" }
s.source = { :git => "https://github.com/andresbrun/ABMSoundCloudAPI.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/andrewsBrun'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*.{h,m}'
s.resources = 'Pod/Classes/Views/*.storyboard'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'AFNetworking', '~> 3.0'
s.dependency 'AFOAuth2Manager', '~> 3.0'
end