miOS
miOS

Reputation: 1377

Compilation error at time of Archiving

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.

Upvotes: 0

Views: 69

Answers (1)

Muhammad Shauket
Muhammad Shauket

Reputation: 2778

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 :)

Upvotes: 2

Related Questions