How To Install google-android-build-tools-23.0.2-installer on Debian 12
Introduction
In this tutorial we learn how to install google-android-build-tools-23.0.2-installer on Debian 12.
What is google-android-build-tools-23.0.2-installer
google-android-build-tools-23.0.2-installer is:
This package will download the binary Google Android build tools and create a Debian package. The build tools are used in the process of assembling the java code into the APK package. They can also be useful for inspecting APKs.
WARNING: Installing this Debian package causes build-tools_r23.0.2-linux.zip (39 MB) to be downloaded from dl.google.com and/or from other suggested mirrors. The End User License Agreement of this binary package is available at developer.android.com.
There are three methods to install google-android-build-tools-23.0.2-installer on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.
Install google-android-build-tools-23.0.2-installer Using apt-get
Update apt database with apt-get using the following command.
sudo apt-get update
After updating apt database, We can install google-android-build-tools-23.0.2-installer using apt-get by running the following command:
sudo apt-get -y install google-android-build-tools-23.0.2-installer
Install google-android-build-tools-23.0.2-installer Using apt
Update apt database with apt using the following command.
sudo apt update
After updating apt database, We can install google-android-build-tools-23.0.2-installer using apt by running the following command:
sudo apt -y install google-android-build-tools-23.0.2-installer
Install google-android-build-tools-23.0.2-installer Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.
sudo aptitude update
After updating apt database, We can install google-android-build-tools-23.0.2-installer using aptitude by running the following command:
sudo aptitude -y install google-android-build-tools-23.0.2-installer
How To Uninstall google-android-build-tools-23.0.2-installer on Debian 12
To uninstall only the google-android-build-tools-23.0.2-installer package we can use the following command:
sudo apt-get remove google-android-build-tools-23.0.2-installer
Uninstall google-android-build-tools-23.0.2-installer And Its Dependencies
To uninstall google-android-build-tools-23.0.2-installer and its dependencies that are no longer needed by Debian 12, we can use the command below:
sudo apt-get -y autoremove google-android-build-tools-23.0.2-installer
Remove google-android-build-tools-23.0.2-installer Configurations and Data
To remove google-android-build-tools-23.0.2-installer configuration and data from Debian 12 we can use the following command:
sudo apt-get -y purge google-android-build-tools-23.0.2-installer
Remove google-android-build-tools-23.0.2-installer configuration, data, and all of its dependencies
We can use the following command to remove google-android-build-tools-23.0.2-installer configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge google-android-build-tools-23.0.2-installer
Dependencies
google-android-build-tools-23.0.2-installer have the following dependencies:
References
- google-android-build-tools-23.0.2-installer website
- google-android-build-tools-23.0.2-installer on packages.debian.org
Summary
In this tutorial we learn how to install google-android-build-tools-23.0.2-installer package on Debian 12 using different package management tools: apt, apt-get and aptitude.