Skip to content

Instantly share code, notes, and snippets.

@fdwills
Last active August 29, 2015 13:59
Show Gist options
  • Save fdwills/10696397 to your computer and use it in GitHub Desktop.
Save fdwills/10696397 to your computer and use it in GitHub Desktop.

列出平台列表

android list targets

创建

android create project --target <target-id> --name MyFirstApp --path <path-to-workspace> MyFirstApp --activity MainActivity --package com.example.myfirstapp

更新项目(检查build.xml)

android update project --target android-3 --name AntTest --path /home/homer/workspace/AntTest

编译项目

ant debug

创建虚拟设备

android create avd -n name -t targetid

列出虚拟设备列表

android list avd

启动模拟器

emulator -avd AVD-1.5

安装apk

adb install bin/AntTest-debug.apk

安装apk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment