我是钛开发环境的新手,我刚刚在我的电脑上安装了钛,nodejs和android框架。一切都很好,但是当我试图运行我的项目时,它会给我这个日志: -
Titanium Command-Line Interface, CLI version 3.2.1, Titanium SDK version 3.2.2.GA
Copyright (c) 2012-2014, Appcelerator, Inc. All Rights Reserved.
Please report bugs to http://jira.appcelerator.org/
[INFO] : Deploy type: development
[INFO] : Building for target: emulator
[INFO] : Building for emulator: Nexus 7
[INFO] : Targeting Android SDK: 19
[INFO] : Building for the following architectures: armeabi, armeabi-v7a, x86
[INFO] : Signing with keystore: C:\Users\adnig\AppData\Roaming\Titanium\mobilesdk\win32\3.2.2.GA\android\dev_keystore (tidev)
[INFO] : Debugging disabled
[INFO] : Profiler disabled
[INFO] : Forcing rebuild: C:\Users\adnig\Documents\Titanium_Studio_Workspace\Work\build\android\build-manifest.json does not exist
[INFO] : Launching emulator: Nexus 7
[INFO] : Running: C:\Users\adnig\Downloads\Compressed\adt-bundle-windows-x86-20140321\adt-bundle-windows-x86-20140321\sdk\tools\emulator.exe "-avd" "Nexus 7" "-port" "5554" "-no-boot-anim" "-partition-size" "128"
[ERROR] Application Installer abnormal process termination. Process exit value was 1
我不知道这个问题究竟是什么。
答案 0 :(得分:0)
检查您是否安装了必需的Android SDK。
在您的情况下,您需要安装Android SDK 19或在tiapp.xml
文件中更改它。
答案 1 :(得分:0)
根据我使用Titanium的经验," Application Installer abnormal process termination. Process exit value was 1 "
错误是最常见的错误,并不指向具体的错误。基本上,使您的app / emulator崩溃或关闭的所有内容都会引发该错误。导致这种情况的常见错误是:
- SDK的错误设置
- 代码中的错误
- tiapp.xml
文件中的钛IDE版本与您的实际钛版本之间的匹配。
- 模拟器中的错误
另请注意,默认模拟器太慢。
在你的情况下我会做什么:
- 转到Dashboard
检查SDK的状态,然后向下滚动到setup native sdk's.
确保您部署到的环境显示为绿色!
- 使用真实设备进行测试,或使用genymotion
作为模拟器(超快!)
- 使用示例代码设置一个新项目(file -> new project -> mobile application project -> 2 tabbed alloy , fill in the details
)并查看它是否运行。