7.0, Android Studio command line tools

Command line tools are divided into SDK tools and platform tools.

SDK tools

The SDK tool is installed with the SDK installation package and updated at any time.

Virtual Device tool

1. Android Virtual Device Manager
provides a graphical graphical user interface, you can create and manage AVD running in the Android virtual machine.
2. Android Emulator is
based on QEMU's device virtual machine, allowing you to debug and test your application in the real-time Android runtime environment.
3. mksdcard
helps you create a disk image

Development tools

1. Hierarch Viewer
can easily view the application layout.
2. SDK Manager
allows you to manage SDK packages.
3. sqlite3
allows you to access SQLite data files created by Android applications.

Debugging tools

1. Android Monitor is
integrated into Android Studio to provide logcat, memory, CPU, GPU and network functions to provide debugging and analysis for applications.
2, adb
a powerful command-line tool that allows you to communicate with a virtual or physical device, it can also access the shell device
3, ADB Shell command
can perform advanced command line operations
4, Dalvik Debug Monitor Server (DDMS )
Debugging Your Android application
5, Device Monitor
independent tool, graphical user interface, provide debugging and analysis tools for Android applications.
6. Systrace
helps you analyze display performance problems.
7. Traceview
provides a graphical view to view the execution log of your application.
8. Tracer for OpenGL ES
allows you to capture OpenGL ES commands and frame images.

Build tool

1. JOBB
allows you to encrypt and decrypt APK expansion files in OOB format
2. ProGuard
compresses, optimizes and blurs your code
3. aipalign
optimizes apk files

Image tool

1. Draw 9-patch
allows you to create NinePatch pictures very easily.
2. etc1tool
PNG image tool

Platform tools

The platform tools will be updated whenever you update the SDK platform. Each platform tool maintains compatibility with the previous platform. As follows:
1, bmgr
a backup shell tool.
2. Logcat
provides a mechanism for collecting and viewing system debugging output.

Author: Song Zhihui
personal micro-blog: Click to enter

Guess you like

Origin blog.csdn.net/song19891121/article/details/51810291