forked from alecgorge/AGAudioPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
32 lines (26 loc) · 743 Bytes
/
Podfile
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
# Uncomment this line to define a global platform for your project
source 'https://github.com/CocoaPods/Specs.git'
inhibit_all_warnings!
use_frameworks!
target "AGAudioPlayer" do
platform :ios, '11.0'
pod 'Interpolate'
pod 'BASSGaplessAudioPlayer', :path => '../gapless-audio-bass-ios'
pod 'MarqueeLabel'
pod 'NapySlider', :path => '../NapySlider'
# pod 'HysteriaPlayer', :head
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
=begin
target "AGAudioPlayerOSX" do
platform :osx, '10.11'
pod 'FreeStreamer'
# pod 'HysteriaPlayer', :head
end
=end