9

Android APK ファイルの生成に問題があります。

ant debugコンパイルを実行すると問題なく動作しますが、実行するとant debug

次のエラーがあります:

iMac:proj.android smartmind$ ant debug
Buildfile: /Users/smartmind/Works/Smallthing/cocos2d-x/samples/HelloCpp/proj.android/build.xml

BUILD FAILED
/Users/smartmind/Works/Smallthing/cocos2d-x/samples/HelloCpp/proj.android/build.xml:46: sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var

Total time: 0 seconds

何が問題なのかわからない。

4

2 に答える 2

17

プロジェクトには、AndroidSDKがインストールされている場所を指す行を含むlocal.propertiesファイルが必要です。sdk.dir

# This file is automatically generated by Android Tools.
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
#
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.

# location of the SDK. This is only used by Ant
# For customization when using a Version Control System, please read the
# header note.
sdk.dir=/opt/android-sdk-linux_x86

このファイルが存在しない場合に作成するには、がプロジェクトへのパスandroid update project -p ...である場所で実行します。...

于 2012-11-09T17:37:15.480 に答える
14

私は同じ問題を抱えていました.-DvarまたはVM引数を使用して問題を解決しました。

ant debug -Dsdk.dir=$SDK_ROOT

$SDK_ROOT は Android SDK パスです

于 2013-04-21T16:59:12.123 に答える