-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathPodfile
30 lines (23 loc) · 887 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
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '16.0'
use_frameworks!
pod 'AudioKit', git: 'https://github.com/dclelland/AudioKit/', branch: 'protonome'
pod 'Bezzy', '~> 1.4'
pod 'MultitouchGestureRecognizer', '~> 2.2'
pod 'Parity', '~> 2.2'
pod 'Persistable', '~> 1.3'
pod 'ProtonomeAudioKitControls', '~> 1.5'
pod 'ProtonomeRoundedViews', '~> 1.2'
pod 'SnapKit', '~> 5.0'
target 'HOWL'
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '16.0'
end
end
end
require 'fileutils'
FileUtils.cp('Pods/Target Support Files/Pods-HOWL/Pods-HOWL-Acknowledgements.plist', 'HOWL/Resources/Settings.bundle/Acknowledgements.plist')
end