0

konyone スタジオから小さな helloworld フォームを作成しようとしていますが、アプリの作成中に次のようなエラーが発生します。

    compile:
     [echo] Packaging the android Helloworld application
     [exec] Buildfile: C:\workspace\temp\Helloworld\build\luaandroid\dist\Helloworld\build.xml
     [exec]   [taskdef] Could not load definitions from resource anttasks.properties. It could not be found.
     [exec] 
     [exec] -set-mode-check:
     [exec] 
     [exec] -set-debug-files:
     [exec] 
     [exec] -check-env:
     [exec] 
     [exec] BUILD FAILED
     [exec] C:\Android\android-sdk\tools\ant\build.xml:401: Problem: failed to create task or type checkenv
     [exec] Cause: The name is undefined.
     [exec] Action: Check the spelling.
     [exec] Action: Check that any custom tasks/types have been declared.
     [exec] Action: Check that any <presetdef>/<macrodef> declarations have taken place.
     [exec] 
     [exec] 
     [exec] Total time: 2 seconds
[11-10-2013 01:39:42]Ant build error=exec returned: 1
[11-10-2013 01:39:42]Build Generation failed for platform Android.
[11-10-2013 01:39:42]Total time taken: 15390 ms
[11-10-2013 01:39:42]Build Generation has failed for the following platforms:-->Android
[11-10-2013 01:39:42]<-----------Build Generation job is completed--------------->

誰かがこの問題を取り除く方法を教えてもらえますか? この問題を解決する人はいますか...??

4

4 に答える 4

0

環境変数に ANT_HOME パスを指定する必要があります。

このリンクを使用して、Apache ant をダウンロードします

于 2014-04-01T05:50:45.747 に答える
0
JAVA_HOME  C:\Program Files (x86)\Java\jdk1.6.0_38
ANT_HOME   D:\apache-ant-1.9.3
PATH       D:\sdk\tools;D:\sdk\platform-tools;D:\apache-ant-1.9.3\bin;C:\Program Files (x86)\Java\jdk1.6.0_38\bin;C:\Program Files (x86)\Java\jre6\bin;C:\Kony\ImageMagick;

環境変数にパスを設定する必要があります。これらがないと、ビルド生成を実行できません。

于 2014-03-31T10:27:52.577 に答える