forked from AlvaroFranco/AFSoundManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAFSoundManager.podspec
More file actions
28 lines (16 loc) · 1.04 KB
/
AFSoundManager.podspec
File metadata and controls
28 lines (16 loc) · 1.04 KB
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
Pod::Spec.new do |s|
s.name = "AFSoundManager"
s.version = "1.2.4"
s.summary = "iOS audio playing (both local and streaming) and recording made easy"
s.description = "iOS audio playing (both local and streaming) and recording made easy through a complete and block-driven Objective-C class. AFSoundManager uses AudioToolbox and AVFoundation frameworks to serve the audio. You can pick a local file or you can use a URL to stream the audio, the choice is up to you."
s.homepage = "https://github.com/AlvaroFranco/AFSoundManager"
s.license = 'MIT'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Alvaro Franco" => "alvarofrancoayala@gmail.com" }
s.platform = :ios
s.source = { :git => "https://github.com/AlvaroFranco/AFSoundManager.git", :tag => 'v1.2.4' }
s.screenshot = "https://raw.github.com/AlvaroFranco/AFSoundManager/master/preview.png"
s.source_files = 'Classes/*.{h,m}'
s.framework = 'AVFoundation', 'AudioToolbox'
s.requires_arc = true
end