【注意】最后更新于 June 18, 2010,文中内容可能已过时,请谨慎使用。
- 首先安装jdk
1
| sudo apt-get install openjdk-6-jdk
|
下载并解压android sdk
将adnroid sdk目录下的tools添加到PATH
安装android-mode
1
| git clone git://github.com/remvee/android-mode.git
|
5. 创建一个android虚拟设备如test1,在.emacs中配置android-mode
1
2
3
4
5
6
| ;; android-mode
(add-to-list 'load-path "~/android/android-mode")
(require 'android-mode)
(custom-set-variables
'(android-mode-avd "test1")
'(android-mode-sdk-dir "~/android/"))
|
- 测试模拟器是否正常
- 安装ant
1
| sudo apt-get instal ant
|
- 中创建一个android工程使用命令android create project
1
| android create project -n helloworld -t 12 -p ./ -k org.example.helloworld -a helloworld
|
- 在emacs安装工程
1
| M-x android-ant-install
|
- 重新安装工程使用
1
| M-x android-ant-reinstall
|