forked from AudioKit/AudioKitSynthOne
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Podfile
35 lines (29 loc) · 893 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
32
33
34
35
platform :ios, '10.0'
use_frameworks!
# This enables the cutting-edge staging builds of AudioKit, comment this line to stick to stable releases
#source 'https://github.com/AudioKit/Specs.git'
source 'https://github.com/CocoaPods/Specs.git'
def available_pods
pod 'AudioKit', '>= 4.5'
pod 'Disk', '~> 0.3.2'
pod 'Audiobus'
pod 'ChimpKit'
pod 'OneSignal', '>= 2.6.2', '< 3.0'
end
target 'AudioKitSynthOne' do
available_pods
end
target 'OneSignalNotificationServiceExtension' do
pod 'OneSignal', '>= 2.6.2', '< 3.0'
pod 'AudioKit', '>= 4.5'
end
# Override Swift version for out of date pods
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['Disk'].include? target.name
target.build_configurations.each do |config|
config.build_settings['SWIFT_VERSION'] = '4.0'
end
end
end
end