I'm using 1.7.1 mobile SDK with Titanium Studio... When I'm running my app for iPhone i get this
[ERROR] [ERROR] Error: Traceback (most recent call last): File "/Library/Application Support/Titanium/mobilesdk/osx/1.7.1/iphone/builder.py", line 1139, in main execute_xcode("iphonesimulator%s" % link_version,["GCC_PREPROCESSOR_DEFINITIONS=LOG__ID=%s DEPLOYTYPE=development TI_DEVELOPMENT=1 DEBUG=1 TI_VERSION=%s %s" % (log_id,sdk_version,debugstr)],False) File "/Library/Application Support/Titanium/mobilesdk/osx/1.7.1/iphone/builder.py", line 1057, in execute_xcode output = run.run(args,False,False,o) File "/Library/Application Support/Titanium/mobilesdk/osx/1.7.1/iphone/run.py", line 39, in run sys.exit(rc) SystemExit: 65
Is anybody already has this issue?
5 Answers
Clean your app_root/build/iphone folder and try again.
I'm not sure if I remember well, but I think I got this error when trying to compile a project which was not encoded in UTF-8. Maybe you should check the encoding of your files.
Hello. I've had a similar build problem (see here for details) which I've just resolved. The problem for me was a single file, info.plist, in the wrong place. I had it in the Resources directory instead of the root. So it wasn't an encoding problem.
So I think you have to go over your project structure in some detail to check everything's where it should be. The real reason I'm posting here is I think we would all save a lot of time if the build errors were more informative. This is the second problem of this sort I've had (the last one WAS an encoding problem) and the second time I've wasted time on a trial and error solution.
Please can we have better error information. Go on, you know it makes sense.
My solution to the problem: http://developer.appcelerator.com/question/122000/build-error---fine-in-simulator-wont-build-for-ios-device#answer-212309
i got error when i compile app for iPhone sdk 4.1, titanium sdk 1.7.1
[ERROR] Error: Traceback (most recent call last): File "/Library/Application Support/Titanium/mobilesdk/osx/1.7.1/iphone/builder.py", line 1139, in main execute_xcode("iphonesimulator%s" % link_version,["GCC_PREPROCESSOR_DEFINITIONS=__LOG__ID__=%s DEPLOYTYPE=development TI_DEVELOPMENT=1 DEBUG=1 TI_VERSION=%s %s" % (log_id,sdk_version,debugstr)],False) File "/Library/Application Support/Titanium/mobilesdk/osx/1.7.1/iphone/builder.py", line 1057, in execute_xcode output = run.run(args,False,False,o) File "/Library/Application Support/Titanium/mobilesdk/osx/1.7.1/iphone/run.py", line 39, in run sys.exit(rc) SystemExit: 1
Your Answer
Think you can help? Login to answer this question!