-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathAFSoundManager.podspec
More file actions
26 lines (15 loc) · 886 Bytes
/
AFSoundManager.podspec
File metadata and controls
26 lines (15 loc) · 886 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
Pod::Spec.new do |s|
s.name = "AFSoundManager"
s.version = "2.1"
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."
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 => 'v2.1' }
s.source_files = 'Classes/*.{h,m}'
s.framework = 'AVFoundation', 'AudioToolbox', 'MediaPlayer'
s.requires_arc = true
end