ant初始化的terminal log输出

~/reproject/re_android/DroidEYE/src $ ls
android-course.keystore  bin        local.properties      res
AndroidManifest.xml      build.xml  proguard-project.txt  src
ant.properties           libs       project.properties

ccy@ccy-Lenovo-B450 ~/reproject/re_android/DroidEYE/src $ ant -v


Apache Ant(TM) version 1.8.2 compiled on December 3 2011
Trying the default build file: build.xml
Buildfile: /home/ccy/reproject/re_android/DroidEYE/src/build.xml
Detected Java version: 1.6 in: /usr/lib/jvm/java-6-openjdk-amd64/jre
Detected OS: Linux
parsing buildfile /home/ccy/reproject/re_android/DroidEYE/src/build.xml with URI = file:/home/ccy/reproject/re_android/DroidEYE/src/build.xml
Project base dir set to: /home/ccy/reproject/re_android/DroidEYE/src
parsing buildfile jar:file:/usr/share/ant/lib/ant.jar!/org/apache/tools/ant/antlib.xml with URI = jar:file:/usr/share/ant/lib/ant.jar!/org/apache/tools/ant/antlib.xml from a zip file
 [property] Loading /home/ccy/reproject/re_android/DroidEYE/src/local.properties
 [property] Loading /home/ccy/reproject/re_android/DroidEYE/src/ant.properties
 [property] Loading Environment env.
Override ignored for property "sdk.dir"
Importing file /home/ccy/reproject/re_android/DroidEYE/src/custom_rules.xml from /home/ccy/reproject/re_android/DroidEYE/src/build.xml
Cannot find /home/ccy/reproject/re_android/DroidEYE/src/custom_rules.xml imported from /home/ccy/reproject/re_android/DroidEYE/src/build.xml
Importing file /home/ccy/download/adt-bundle-linux-x86_64-20130219/sdk/tools/ant/build.xml from /home/ccy/reproject/re_android/DroidEYE/src/build.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /home/ccy/download/adt-bundle-linux-x86_64-20130219/sdk/tools/ant/build.xml with URI = file:/home/ccy/download/adt-bundle-linux-x86_64-20130219/sdk/tools/ant/build.xml
 [macrodef] creating macro  do-only-if-not-library
 [macrodef] creating macro  do-only-if-manifest-hasCode
 [macrodef] creating macro  dex-helper
 [macrodef] creating macro  package-helper
 [macrodef] creating macro  zipalign-helper
 [macrodef] creating macro  run-tests-helper
 [macrodef] creating macro  record-build-key
 [macrodef] creating macro  record-build-info
 [macrodef] creating macro  uninstall-helper
Overriding previous definition of reference to ant.projectHelper
Build sequence for target(s) `help' is [help]
Complete build sequence is [help, -pre-build, -check-env, -setup, -build-setup, -code-gen, -pre-compile, -compile, -post-compile, -obfuscate, -dex, -set-mode-check, -set-instrumented-mode, -set-debug-mode, -debug-obfuscation-check, -crunch, -package-resources, -package, -post-package, -do-debug, instrument, emma, android_rules.-pre-build, android_rules.-release-obfuscation-check, android_rules.-setup, lint, android_rules.-release-sign, -test-project-check, android_rules.nodeps, android_rules.-set-debug-files, android_rules.-set-debug-mode, -set-debug-files, -post-build, debug, -pre-clean, -release-nosign, install, installd, android_rules.installt, android_rules.-dex, -set-release-mode, android_rules.installr, android_rules.emma, android_rules.-release-nosign, android_rules.-pre-compile, android_rules.instrument, android_rules.uninstall, android_rules.installi, android_rules.lint, android_rules.-obfuscate, android_rules.clean, android_rules.installd, android_rules.-post-build, android_rules.-debug-obfuscation-check, android_rules.-compile, installt, -release-obfuscation-check, -release-prompt-for-password, -release-sign, android_rules.release, installr, release, android_rules.-pre-clean, android_rules.-post-compile, installi, android_rules.-code-gen, android_rules.-release-prompt-for-password, android_rules.-package-resources, android_rules.-set-mode-check, android_rules.-test-project-check, test, android_rules.help, android_rules.install, clean, android_rules.-do-debug, android_rules.-check-env, android_rules.-package, android_rules.-set-instrumented-mode, android_rules.-post-package, android_rules.test, android_rules.debug, uninstall, android_rules.-build-setup, nodeps, android_rules.-crunch, , android_rules.-set-release-mode]


help:
     [echo] Android Ant Build. Available targets:
     [echo]    help:      Displays this help.
     [echo]    clean:     Removes output files created by other targets.
     [echo]               This calls the same target on all dependent projects.
     [echo]               Use 'ant nodeps clean' to only clean the local project
     [echo]    debug:     Builds the application and signs it with a debug key.
     [echo]               The 'nodeps' target can be used to only build the
     [echo]               current project and ignore the libraries using:
     [echo]               'ant nodeps debug'
     [echo]    release:   Builds the application. The generated apk file must be
     [echo]               signed before it is published.
     [echo]               The 'nodeps' target can be used to only build the
     [echo]               current project and ignore the libraries using:
     [echo]               'ant nodeps release'
     [echo]    instrument:Builds an instrumented package and signs it with a
     [echo]               debug key.
     [echo]    test:      Runs the tests. Project must be a test project and
     [echo]               must have been built. Typical usage would be:
     [echo]                   ant [emma] debug install test
     [echo]    emma:      Transiently enables code coverage for subsequent
     [echo]               targets.
     [echo]    install:   Installs the newly build package. Must either be used
     [echo]               in conjunction with a build target (debug/release/
     [echo]               instrument) or with the proper suffix indicating
     [echo]               which package to install (see below).
     [echo]               If the application was previously installed, the
     [echo]               application is reinstalled if the signature matches.
     [echo]    installd:  Installs (only) the debug package.
     [echo]    installr:  Installs (only) the release package.
     [echo]    installi:  Installs (only) the instrumented package.
     [echo]    installt:  Installs (only) the test and tested packages (unless
     [echo]               nodeps is used as well.
     [echo]    uninstall: Uninstalls the application from a running emulator or
     [echo]               device. Also uninstall tested package if applicable
     [echo]               unless 'nodeps' is used as well.


BUILD SUCCESSFUL
Total time: 5 seconds

转载于:https://my.oschina.net/coderman/blog/147182

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值