forked from alecgorge/AGAudioPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAGAudioPlayer.podspec
More file actions
32 lines (28 loc) · 1.27 KB
/
AGAudioPlayer.podspec
File metadata and controls
32 lines (28 loc) · 1.27 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
29
30
31
32
Pod::Spec.new do |s|
s.name = "AGAudioPlayer"
s.version = "0.8.2"
s.summary = "Gapless-playback + UI"
# s.description = <<-DESC
# An optional longer description of ${POD_NAME}
# * Markdown format.
# * Don't worry about the indent, we strip it!
# DESC
s.homepage = "https://github.com/alecgorge/AGAudioPlayer"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "alecgorge" => "alecgorge@gmail.com" }
s.source = { :git => "https://github.com/alecgorge/AGAudioPlayer.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/alecgorge'
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.11'
s.requires_arc = true
s.swift_version = '5.0'
s.source_files = 'AGAudioPlayer/**/*.{h,m,swift}'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.ios.frameworks = 'MediaPlayer'
s.resource_bundle = { 'AGAudioPlayer' => ['AGAudioPlayer/UI/Icons.xcassets', 'AGAudioPlayer/**/*.xib'] }
s.dependency 'Interpolate'
s.dependency 'BASSGaplessAudioPlayer'
s.dependency 'MarqueeLabel'
s.dependency 'NapySlider'
end