我正在使用Titanium Studio(1.0.0.201104272233)和Titanium Developer(1.2.2)并且刚刚开始我的应用程序开发。它适用于iPhone模拟器。好极了!但。 。 。当我尝试构建设备时,我收到此错误:
[INFO]执行清洁构建
[ERROR]
[错误]错误:回溯(最近一次呼叫最后):
文件“/ Library / Application Support / Titanium / mobilesdk / osx / 1.7.0 / iphone / builder.py”,第1306行,在主体上 execute_xcode(“iphoneos%s”%iphone_version,args,False)
文件“/ Library / Application Support / Titanium / mobilesdk / osx / 1.7.0 / iphone / builder.py”,第1066行,在execute_xcode中 output = run.run(args,False,False,o)
文件“/ Library / Application Support / Titanium / mobilesdk / osx / 1.7.0 / iphone / run.py”,第39行,在运行中
sys.exit(RC)
SystemExit:65
以下是完整的构建日志:pastie.org
我使用的是OSX 10.6.7,Titanium SDK 1.7.0,ios SDK 4.2(或4.3)。我在/ Developer中的xCode3和/ xCode4 /中的xCode4以及此问题的后退发际线。我正在尝试用软件版本4.3.3构建iPod touch。
在模拟器上工作时,Studio似乎比开发人员更好地处理xCode4的并行位置。我已经多次删除了构建文件夹并尝试了不同的ios / Titanium SDK。
答案 0 :(得分:1)
关键是可以使用* .xcodeproject文件并在xCode中构建应用程序。这将为开发人员提供一个完全不同的调试环境,其中包含特定于iPod / Apple要求和认证的错误消息,以便正确地进行所有设置。虽然它们在Titanium Studio或Developer中可能看起来是正确和准确的,但仍然可能存在错误或冲突。就我而言,我的钥匙串中有重复的证书,而我的配置设置中存在一些错误,正如您在日志中看到的那样,Titanium Studio或开发人员根本不明白。
感谢Brian一群为您提供帮助的问题和指导。