0

我在 Konystudio 中运行了一个简单的应用程序。我得到了以下错误

[exec-shell] com.sun.tools.javac.Main is not on the classpath.
[exec-shell] Perhaps JAVA_HOME does not point to the JDK.
[exec-shell] It is currently set to "C:\Program Files\Java\jre7"
[exec-shell] 

但我的

JAVA_HOME = C:\Program Files\Java\jdk1.7.0_51\;
ANT_HOME = C:\KonyOne\Ant
Path  = C:\KonyOne\ImageMagick;C:\KonyOne\Ant\bin;
ANDROID_HOME = C:\Users\yuvarajag\AppData\Local\Android\android-sdk;D:\Tools\adt-bundle-windows-x86_64-20131030\adt-bundle-windows-x86_64-20131030\sdk;

我已正确设置所有路径,但无法运行应用程序。

我没有在任何地方设置路径“C:\Program Files\Java\jre7”。

如何解决这个问题?

4

1 回答 1

0

您需要将java/binand android tools 和 platform-tools 路径添加到您的Path变量中。

路径:“C:\Kony\ImageMagick;C:\Kony\Ant\bin;C:\Program Files\Java\jdk1.7.0_45\bin;C:\Android\tools;C:\Android\platform-tools”

这是显示在您的模拟器上构建的应用程序所必需的。

于 2014-06-17T06:06:22.063 回答