1、切换路径到Android SDK’s tools/
2、执行android list targets
显示出下载的所有可用的安卓平台的列表,找到你要编译的那个平台,记下id,请选择最新的版本,当然,你也可以选择老版本,但是新版本可以使你的应用在最新的设备上达到最优化。
3、执行
android create project --target <target-id> --name MyFirstApp --path <path-to-workspace>/MyFirstApp --activity MainActivity --package com.example.myfirstapp
其中<target-id>为刚刚记下的id,<path-to-workspace>为工程要保存在路径
注意:要将platform-tools/
还有tools/添加到path环境变量中
(翻译至安卓官方开发文档)