I'm having problems launching a simple app for Android.
I did what they say in the Install Diagnostics for Windows section here: http://docs.appcelerator.com/titanium/latest/#!/guide/Installation_Troubleshooting-section-29004847_InstallationTroubleshooting-InstallDiagnosticsforWindows
and the resulting Git is: https://gist.github.com/4a01a390fe8b1fdd102c.git
Please I need heeelp!! :'(
3 Answers
My console prompts:
[ERROR] JDK version "javac" no se reconoce como un comando interno o externo, programa o archivo por lotes ejecutable. detected, but at least 1.6.0 is required [ERROR] Application Installer abnormal process termination. Process exit value was 1
javac needs to be in your system path.
I have found a SOLUTION.
What I needed to do was adding/editing some Environment Variables.
1- MyComputer + Right-Click + Properties 2- Advanced Options 3- Environment Variables 4- Add new user variable: Name: PATH Value: c:\program files\Java\jdk1.6.0_05\bin
5- Add new System variable: Name: CLASSPATH Value: . (The value is "." (dot))
6- Edit System variable: Name: Path Value: c:\program files\Java\jdk1.6.0_05\bin; + Whatever is here.
exemple: c:\program files\Java\jdk1.6.0_05\bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Program Files (x86)\Common Files\Microsoft Shared\Windows Live;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Windows Live\Shared;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\nodejs
Your Answer
Think you can help? Login to answer this question!