免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2676 | 回复: 0
打印 上一主题 下一主题

Developing android application with sdk and apache ant [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-07-27 22:28 |只看该作者 |倒序浏览
developing android application with sdk and apache ant

ps: just a note to record the settings.

I hate eclipse! I seldomly used eclipse to develop android app. Here is a alternative approach to work with android sdk instead of eclipse!

Simply, there are two steps to finish configuration of development environment.

Firstly,download and install the android 2.2 sdk.

from
        [1]http://androidappdocs.appspot.com/sdk/index.html
        [2]http://www.android.com/

for example, http://dl.google.com/android/android-sdk_r06-linux_86.tgz

exact android-sdk_r06-linux_86.tgz to some place (i.e., /home/android/android/android-sdk_r06-linux_86), and then setup the system environment:

    $ export PATH="$PATH:home/android/android/android-sdk_r06-linux_86/tools"
   
    strongly recommend that it's added into .profile/.bashrc (to myself, I prefer to do this in /etc/environment, Ubuntu 9.04)
   
    And then run the follow command at current console to download the sdk packages:
   
    $ android
   
    It will popup a new window manager ("Android SDK and AVD Manager"), click "Available Pacages" on the left column, and then the right column would show you "Sites, Packages and Archives"; let the checkbox selected (https://dl-ssl.google.com/android/repository/repository.xml), and then choose the package level which you want to install. Follow the tips and update sdk platforms.
   
    This will take some time to updating, depengding on the packages you choose.
   
    After updating platforms, run the following comand:
   
    $ android list target
   
    If upgrading sucessfully, you would see the targets you choosed.
   
   
Secondly, download and install apache ant

Ant's homepae: http://ant.apache.org
The lastest version is 1.8.1

exact the tarball into some place, /home/android/ant-1.8.1, for example. And then setup ant's path:
    $ export PATH="$PATH:/home/android/ant-1.8.1/bin"

To make ANT work correctly, make sure to setup the JAVA_HOME first:
    $ export JAVA_HOME=path/to/java
   
run
    $ ant
at the currnt sonsole, you will see some error as follows:
   
    lenovo@h180 /home/android $ ant
    Buildfile: build.xml does not exist!
    Build failed


To verify both above work correctly, now we create a new simple android project and compile it.

    $ android create project -n HelloAnt -t android-8 -p HelloAnt -k exam.helloant -a HelloAnt
    $ cd HelleAnt
    $ ant debug
   
    If the emulator or device is online, you could run directly:
   
    $ ant install
   
    to compile the project and install the .apk file into the emulator or device.
   
   
    Until now everything is going well. Have fun!

评分

参与人数 1可用积分 +15 收起 理由
prolj + 15

查看全部评分

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP