Max Allan Niklasson
Max Allan Niklasson

Reputation: 522

Building example app fails in Appcelerator

I created a new project (Default Alloy Mobile App) and trying to run it in 9.3 iPhone 6 simulator when it fails.

[ERROR] :  ** BUILD FAILED **
[ERROR] :  The following build commands failed:
[ERROR] :   CompileC build/Intermediates/fdsafda.build/Debug-iphonesimulator/Test.build/Objects-normal/i386/WatchSessionModule.o Classes/WatchSessionModule.m normal i386 objective-c com.apple.compilers.llvm.clang.1_0.compiler
[ERROR] :  (1 failure)

And if I open the project in Xcode it says that /Users/me/Documents/Appcelerator_Studio_Workspace/Test/build/iphone/Classes/WatchSessionModule.h:10:9: 'WatchConnectivity/watchConnectivity.h' file not found

I have the following installed

Upvotes: 1

Views: 125

Answers (1)

nafsaka
nafsaka

Reputation: 1032

In my case, it's because i'm installing MacOSX in case sensitive partition, so to fix it just fix the case:

watchConnectivity.h -> WatchConnectivity.h

Upvotes: 3

Related Questions