-
Notifications
You must be signed in to change notification settings - Fork 3
/
SwiftySoundRecorder.podspec
32 lines (26 loc) · 1.21 KB
/
SwiftySoundRecorder.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
Pod::Spec.new do |s|
s.name = 'SwiftySoundRecorder'
s.version = '0.1.0'
s.summary = 'A Swift ySound Recorder with Sound Wave Views.'
s.homepage = 'https://github.com/rcholic/SwiftySoundRecorder'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rcholic' => '[email protected]' }
s.source = { :git => 'https://github.com/rcholic/SwiftySoundRecorder.git', :tag => s.version.to_s }
# s.social_media_url = 'https://twitter.com/<TWITTER_USERNAME>'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Source/**/*'
s.ios.deployment_target = '8.0'
s.resource_bundles = {
'SwiftySoundRecorder' => ['Images/*.{png}']
}
# s.source_files = 'SwiftySoundRecorder/Classes/**/*'
# s.resource_bundles = {
# 'SwiftySoundRecorder' => ['SwiftySoundRecorder/Assets/*.png']
# }
s.frameworks = 'UIKit', 'AVFoundation'
s.dependency 'SCSiriWaveformView'
s.dependency 'FDWaveformViewForked', '~> 0.5.0'
# s.dependency 'FDWaveformView', '~> 1.0.1'
# s.dependency 'FDWaveformView', :git => 'https://github.com/hackiftekhar/FDWaveformView.git', :commit => '65369f6729bec964db984b7f7439a915342237de'
end