ios - XCode Archive error in prefix header -
i'm using gpuimage framework in project , added projects target dependencies. builds , runs fine. problem occurred when tried archive project ipa file. error shows 'could not build module 'foundation' -inside gpuimage-prefix.pch.
#ifdef __objc__ #import <foundation/foundation.h> #endif
is conflicting import of project's projectname-prefix.pch ?
#ifdef __objc__ #import <uikit/uikit.h> #import <foundation/foundation.h> #endif
i keen know how solve ideal practice. did weak-link core video framework in project settings per gpuimage guideline, no use @ all. in advance.
i think can delete /users/username/library/developer/xcode/deriveddata/modulecache clean project
Comments
Post a Comment