当前位置: 代码迷 >> Android >> android tools 集锦
  详细解决方案

android tools 集锦

热度:317   发布时间:2016-05-01 16:40:46.0
android tools 汇总

1:appt:

aapt stands for Android Asset Packaging Tool and is included in the tools/ directory of the SDK. This tool allows you to view, create, and update Zip-compatible archives (zip, jar, apk). It can also compile resources into binary assets.

hough you probably won't often use?aapt?directly, build scripts and IDE plugins can utilize this tool to package the apk file that constitutes an Android application.

For more usage details, open a terminal, go to the?tools/?directory, and run the command:

  • Linux or Mac OS X:

    ./aapt
  • Windows:

    aapt.exe

2:adb

?

3:android

  • Create, delete, and view Android Virtual Devices (AVDs).
  • Create and update Android projects.
  • Update your Android SDK with new platforms, add-ons, and documentation.

4:

  相关解决方案