«неизвестная опция: --output» после обновления Android SDK с версии 12 до версии 13 - PullRequest
1 голос
/ 02 октября 2011

Я только что обновил свои инструменты разработки для Android до версии 13. Все прошло гладко, и я могу продолжать встраивать Eclipse как обычно.

Однако, как только я попытаюсь сделать сборку релиза с помощью Ant, моя сборкавыдает сообщение «неизвестная опция: --output».

Дополнительная информация: Я использую 32-битную версию Eclipse / Java в 64-битных окнах.Эта проблема возникает только при запуске сборки из командной строки, и сборка работала до того, как я обновил sdk с версии 12 до 13.

Вот соответствующий вывод "ant release"

 [proguard] Printing classes to [C:\Work\bugsy_workspace\bugsy\bin\proguard\dump.txt]...

-dex:
     [echo] Converting compiled files and external libraries into C:\Work\bugsy_workspace\bugsy\bin\classes.dex...
    [apply] unknown option: --output
    [apply] usage:
    [apply]   dx --dex [--debug] [--verbose] [--positions=<style>] [--no-locals]
    [apply]   [--no-optimize] [--statistics] [--[no-]optimize-list=<file>] [--no-strict]
    [apply]   [--keep-classes] [--output=<file>] [--dump-to=<file>] [--dump-width=<n>]
    [apply]   [--dump-method=<name>[*]] [--verbose-dump] [--no-files] [--core-library]
    [apply]   [--num-threads=<n>] [<file>.class | <file>.{zip,jar,apk} | <directory>] ...
    [apply]     Convert a set of classfiles into a dex file, optionally embedded in a
    [apply]     jar/zip. Output name must end with one of: .dex .jar .zip .apk. Positions
    [apply]     options: none, important, lines.
    [apply]   dx --annotool --annotation=<class> [--element=<element types>]
    [apply]   [--print=<print types>]
    [apply]   dx --dump [--debug] [--strict] [--bytes] [--optimize]
    [apply]   [--basic-blocks | --rop-blocks | --ssa-blocks | --dot] [--ssa-step=<step>]
    [apply]   [--width=<n>] [<file>.class | <file>.txt] ...
    [apply]     Dump classfiles, or transformations thereof, in a human-oriented format.
    [apply]   dx --junit [-wait] <TestClass>
    [apply]     Run the indicated unit test.
    [apply]   dx -J<option> ... <arguments, in one of the above forms>
    [apply]     Pass VM-specific options to the virtual machine that runs dx.
    [apply]   dx --version
    [apply]     Print the version of this tool (1.6).
    [apply]   dx --help
    [apply]     Print this message.

BUILD FAILED
C:\PROGRA~2\Android\android-sdk\tools\ant\main_rules.xml:487: The following error occurred while executing this line:
C:\PROGRA~2\Android\android-sdk\tools\ant\main_rules.xml:203: apply returned: 1

Total time: 12 seconds

1 Ответ

2 голосов
/ 02 октября 2011

Мне удалось разобраться в этом самому. Для Android SDK Tools Revision 13 требуется Android SDK Platform-инструменты редакции 7.

Здесь приведены некоторые инструкции о том, как получить и установить инструменты платформы 7 .

...