新建了一个cordova iOS的project
可以在xcode中编译运行成功,但是在xcodebuild中则显示
/project/project/Classes/AppDelegate.h:30:9: fatal error: 'Cordova/CDVViewController.h' file not found
#import <Cordova/CDVViewController.h>
^
1 error generated.
The following build commands failed:
CompileC build/project.build/Release-iphoneos/project.build/Objects-normal/armv7s/AppDelegate.o project/Classes/AppDelegate.m normal armv7s objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/project.build/Release-iphoneos/project.build/Objects-normal/armv7s/MainViewController.o project/Classes/MainViewController.m normal armv7s objective-c com.apple.compilers.llvm.clang.1_0.compiler
CompileC build/project.build/Release-iphoneos/project.build/Objects-normal/armv7/AppDelegate.o project/Classes/AppDelegate.m normal armv7 objective-c com.apple.compilers.llvm.clang.1_0.compiler
按照http://stackoverflow.com/questions/12921295/phonegap-2-1-0-cordova-cdvviewcontroller-h-file-not-found 这个也没有解决,请问有谁遇到过这个问题,如何解决的,谢谢
ringa_lee2017-04-17 11:53:36
The problem is that I didn’t build CordovaLib first, so I built the main project directly. Just build CordovaLib first
Reference http://stackoverflow.com/questions/16445556/still-getting-cordova-cdvviewcontroller-h-file-not-found-error-in-xcode
ringa_lee2017-04-17 11:53:36
Add the following path in BuildSettings->Header Search Paths,
"$(OBJROOT)/UninstalledProducts/$(PLATFORM_NAME)/include"
Temporarily, it is solved, the specific reason is not clear yet. .