You need to understand the entire build, packaging and debugging process of the android project. Usually these tasks are done by the IDE for you, which actually calls the tool chain included in the sdk. Just say something. build-tools contains tools required for each step of the build process. For example, appt (Android Asset Packaging Tool) is used to compile resources. There is Android under tools, which can be used to open sdk manager, create new projects, etc. In addition, there are sqlite3, zipalign, etc. The specific functions will not be detailed. There is adb (android debug bridge) under platform-tools, which is a bridge between Android devices and PCs. You can use it to install apk, print logs, etc. (I can’t remember clearly, so I’ll have to check the information myself)
If you want to learn about these tools, it is recommended to jump out of the IDE, refer to relevant materials (such as the official website https://developer.android.com/tools/building/index.html), and create, write, build, package, and debug an Android project with bare hands.
You need to understand the entire build, packaging and debugging process of the android project. Usually these tasks are done by the IDE for you, which actually calls the tool chain included in the sdk. Just say something. build-tools contains tools required for each step of the build process. For example, appt (Android Asset Packaging Tool) is used to compile resources. There is Android under tools, which can be used to open sdk manager, create new projects, etc. In addition, there are sqlite3, zipalign, etc. The specific functions will not be detailed. There is adb (android debug bridge) under platform-tools, which is a bridge between Android devices and PCs. You can use it to install apk, print logs, etc. (I can’t remember clearly, so I’ll have to check the information myself)
If you want to learn about these tools, it is recommended to jump out of the IDE, refer to relevant materials (such as the official website https://developer.android.com/tools/building/index.html), and create, write, build, package, and debug an Android project with bare hands.
Add to the above
Smaples for SDK
Sources for Android SDK
Google APIs
XXX image
http://www.androiddevtools.cn/
This website has download methods and introductions to related tools for reference.