Appcelerator Titanium error: Application Installer

2019-08-10 21:23发布

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.

I have already done this: Titanium [ERROR] Application Installer abnormal process termination

I would appreciate your help with this.

2条回答
干净又极端
2楼-- · 2019-08-10 22:01

Have you checked This Link. And try to use JDK 6 not JDK 7, it worked for me.

查看更多
等我变得足够好
3楼-- · 2019-08-10 22:05

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).

At least for me, JDK 7/8 32 bit led to crashes. Have to search a bit on the Oracle site.

http://www.oracle.com/technetwork/java/javasebusiness/downloads/java-archive-downloads-javase6-419409.html#jdk-6u45-oth-JPR

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" &

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 .

查看更多
登录 后发表回答