0

I have integrated TheAmazingAudioEngine. The App is running successfully on the simulator and on the device. However, when I try to Archive it, getting following compilation error.

'TheAmazingAudioEngine/AEBufferStack.h' file not found

This file is present and app is running in debug mode.

Does anyone know how to solve this issue? Thanks in advance.

miOS
  • 1,379
  • 13
  • 20

1 Answers1

2

Try this troubleshooting steps.This issue appear because of search path.

  1. Select your [projectName] in Xcode TARGETS.
  2. Go to Build Settings tab.
  3. Search "Header Search Paths"
  4. Double click and add this path to both "Debug" and "Release": $(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include Now clean the Project and restart Xcode.
  5. now you able to archive try it :)
Muhammad Shauket
  • 2,643
  • 19
  • 40
  • Thanks, Shauket, it's worked. But I found a solution from here :). But your answer is correct so marked as accepted. https://github.com/TheAmazingAudioEngine/TheAmazingAudioEngine2/issues/9 – miOS Oct 30 '17 at 07:35