问题描述
我几乎失去了理智,我花了 3 天时间试图解决这个问题.我有 Windows 7 64 位,我安装了 32 位的 jdk,我安装了以下 Android SDK:2.3.3、3.0、4.1.2 和 4.3.另外我已经将变量 ANDROID_SKD 设置为正确的路径等.我真的不知道还能做什么.
I almost lost my mind, I have spent 3 days trying to fix this. I have Windows 7 64 Bits, I have installed the jdk for 32 bits, I have installed the following Android SDK's: 2.3.3, 3.0, 4.1.2 and 4.3. Also I have set the variable ANDROID_SKD to the right path, etc. I really don't know what else to do.
我已经这样做了:Titanium [ERROR] Application Installer 异常进程终止
非常感谢您的帮助.
推荐答案
看起来他们仍然只支持 JDK 6 32 位和 Titanium Studio 3.3.0(现在最新),与他们在这里所说的不同http://docs.appcelerator.com/titanium/3.0/#!/guide/Titanium_Compatibility_Matrix-section-29004837_TitaniumCompatibilityMatrix-SupportedSDKReleases(他们支持 jdk 8).
Looks like they still only support JDK 6 32 bit with Titanium Studio 3.3.0 (latest right now), different to what they say here http://docs.appcelerator.com/titanium/3.0/#!/guide/Titanium_Compatibility_Matrix-section-29004837_TitaniumCompatibilityMatrix-SupportedSDKReleases (that they support jdk 8).
至少对我来说,JDK 7/8 32 位导致崩溃.必须在 Oracle 站点上搜索一下.
At least for me, JDK 7/8 32 bit led to crashes. Have to search a bit on the Oracle site.
我能够同时安装 jdk 8 64 位和 jdk 6 32 位.
I was able to have both jdk 8 64bit and jdk 6 32bit installed in parallel.
我现在也从批处理文件开始
I also now start with batch file
set ANDROID_SDK=C:\android-sdk-win
set JAVA_HOME=C:\Program Files (x86)\Java\jdk1.6.0_45
set PATH=C:\Program Files (x86)\Java\jre6\bin;%PATH%
"C:\Users\me\AppData\Roaming\Appcelerator\Titanium Studio\TitaniumStudio.exe" &
就像在 appcelerator 网站上的一些帖子中描述的那样,例如 http://developer.appcelerator.com/question/146294/program-launch-failed-unable-to-locate-java-vm-please-set-javahome-环境变量 .
Like described in some posts at appcelerator website, like http://developer.appcelerator.com/question/146294/program-launch-failed-unable-to-locate-java-vm-please-set-javahome-environment-variable .
这篇关于Appcelerator Titanium 错误:应用程序安装程序异常进程终止.进程退出值为 1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!