使用命令行创建Android工程报错:"Target id is not valid. Use 'android.bat list targets' to get the target ids"

D:adtsdk>cd tools

D:adtsdk ools>

D:adtsdk ools>android list targets
Available Android targets:
----------
id: 1 or "android-18"
     Name: Android 4.3
     Type: Platform
     API level: 18
     Revision: 1
     Skins: HVGA, QVGA, WQVGA400, WQVGA432, WSVGA, WVGA800 (default), WVGA854, W
XGA720, WXGA800, WXGA800-7in
     ABIs : armeabi-v7a


两次失败执行,ID不对,和上面的id相同


D:adtsdk ools>android create project --target 19 --path  d:anzhuoMyFirstApp
 --activity MainActivity --package com.example.myfirstapp
Error: Target id is not valid. Use 'android.bat list targets' to get the target
ids.

D:adtsdk ools>android create project --target 18 --path  d:anzhuoMyFirstApp
 --activity MainActivity --package com.example.myfirstapp
Error: Target id is not valid. Use 'android.bat list targets' to get the target
ids.

D:adtsdk ools>android create project --target android-18 --path  d:anzhuoMy
FirstApp  --activity MainActivity --package com.example.myfirstapp
Created directory D:anzhuoMyFirstAppsrccomexamplemyfirstapp
Added file d:anzhuoMyFirstAppsrccomexamplemyfirstappMainActivity.java
Created directory D:anzhuoMyFirstApp es
Created directory D:anzhuoMyFirstAppin
Created directory D:anzhuoMyFirstApplibs
Created directory D:anzhuoMyFirstApp esvalues
Added file d:anzhuoMyFirstApp esvaluesstrings.xml
Created directory D:anzhuoMyFirstApp eslayout
Added file d:anzhuoMyFirstApp eslayoutmain.xml
Created directory D:anzhuoMyFirstApp esdrawable-xhdpi
Created directory D:anzhuoMyFirstApp esdrawable-hdpi
Created directory D:anzhuoMyFirstApp esdrawable-mdpi
Created directory D:anzhuoMyFirstApp esdrawable-ldpi
Added file d:anzhuoMyFirstAppAndroidManifest.xml
Added file d:anzhuoMyFirstAppuild.xml
Added file d:anzhuoMyFirstAppproguard-project.txt

D:adtsdk ools>


查看目录,产生工程文件


原文地址:https://www.cnblogs.com/moqiang02/p/4061473.html