1

Installing AudioKit using CocoaPods gets an issue missing a file. On file AKModulatedDelayDSP.hpp ...

#import "ModulatedDelay.hpp"

'ModulatedDelay.hpp' file not found

Tried several times on different projects getting the same issue. Any ideas ?

Fischer
  • 1,513
  • 4
  • 17
  • 38

1 Answers1

1

It depends on what you're importing from AudioKit. I don't think you'd get this with a vanilla project. But, if what you're doing requires access to core, then you might not want to use Cocoapods anyway. If you shared your project I could give you a more complete answer.

Aurelius Prochazka
  • 4,510
  • 2
  • 11
  • 34
  • This is the project I'm trying to install: https://github.com/cemolcay/AUSequencer – Fischer Apr 20 '18 at 21:54
  • The podfile: target 'AUSequencer' do use_frameworks! pod 'AudioKit', '~> 4.2' pod 'Audiobus' end – Fischer Apr 20 '18 at 21:55
  • Okay, I'll have a look, probably have a fix in 4.2.4 tonight or tomorrow. – Aurelius Prochazka Apr 21 '18 at 04:52
  • So, actually I took a look at his example and he's doing an "import AudioKit/AudioKit.h" for no reason apparently, try commenting line 12 of AudioEngine.mm. – Aurelius Prochazka Apr 21 '18 at 08:24
  • That is ... Thanks!!! works removing "import AudioKit/AudioKit.h" from AudioEngine.h – Fischer Apr 21 '18 at 14:03
  • Aurelius, by the way... Do know know any other sample code for Link implementation in AudioKit ? – Fischer Apr 21 '18 at 14:10
  • No, but I talked to Cem and he still has plans to push that example along with more AudioKit integration in the future. – Aurelius Prochazka Apr 21 '18 at 21:50
  • I'm running into this. I'm compiling the AudioKit framework from source within my app. I'm going to move on to something else for now, but just wanted leave a comment that this may still be an issue. I'm not sure where the best place is to leave "me too" comments like this. – Chester Fritz Aug 06 '18 at 23:37
  • Yes, same problem here. Building AudioKit from source. Actually, I've been looking at adding parts of AudioKitSynthOne to my project; that's when things went sideways. (I may give it a go using CocoaPods.) – jbm Sep 25 '18 at 01:21
  • Quick update: same error using CocoaPods. I'm using "pod 'AudioKit', '~> 4.2', pod 'Audiobus', as recommended above. (Pod version came down as 4.3.) I get the error from building `S1DSPKernel+process.mm`. – jbm Sep 25 '18 at 01:45
  • UPDATE: Using CocoaPods for AK, then cleaning Derived Data got past the error. Just a **note** that I had to escape the quotes in `Press \"Save\" to save...` equivalent in a few of the languages localization files (in Presets). – jbm Sep 25 '18 at 02:16