How To Install google-android-ndk-installer on Ubuntu 20.04
Introduction
In this tutorial we learn how to install google-android-ndk-installer
on Ubuntu 20.04.
What is google-android-ndk-installer
google-android-ndk-installer is:
This package will download the Google Android NDK package and create a Debian package.
The Android NDK is a toolset that lets you implement parts of your app using native-code languages such as C and C++. For certain types of apps, this can help you reuse existing code libraries written in those languages.
WARNING: Installing this Debian package causes android-ndk-r12-linux-x86_64.zip 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-ndk-installer
on Ubuntu 20.04. 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-ndk-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-ndk-installer
using apt-get
by running the following command:
sudo apt-get -y install google-android-ndk-installer
Install google-android-ndk-installer Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install google-android-ndk-installer
using apt
by running the following command:
sudo apt -y install google-android-ndk-installer
Install google-android-ndk-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 Ubuntu. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install google-android-ndk-installer
using aptitude
by running the following command:
sudo aptitude -y install google-android-ndk-installer
How To Uninstall google-android-ndk-installer on Ubuntu 20.04
To uninstall only the google-android-ndk-installer
package we can use the following command:
sudo apt-get remove google-android-ndk-installer
Uninstall google-android-ndk-installer And Its Dependencies
To uninstall google-android-ndk-installer
and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:
sudo apt-get -y autoremove google-android-ndk-installer
Remove google-android-ndk-installer Configurations and Data
To remove google-android-ndk-installer
configuration and data from Ubuntu 20.04 we can use the following command:
sudo apt-get -y purge google-android-ndk-installer
Remove google-android-ndk-installer configuration, data, and all of its dependencies
We can use the following command to remove google-android-ndk-installer
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge google-android-ndk-installer
References
Summary
In this tutorial we learn how to install google-android-ndk-installer
package on Ubuntu 20.04 using different package management tools: apt
, apt-get
and aptitude
.