Cài đặt Android Studio trong Ubuntu 22.04

Step1: Update and Upgrade APT packages

To update and upgrade Ubuntu APT packages, first open up the terminal by pressing CTRL+ALT+T and run the following command:

sudo apt update && sudo apt upgrade

Step 3: Add PPA repository to install Android Studio

Now add PPA repository of Android Studio to your Ubuntu 22.04 system by utilizing the given add-apt-repository command:

sudo add-apt-repository ppa:maarten-fonville/android-studio
sudo apt update

Step 4: Installing Android Studio in Ubuntu

Now install Android Studio in Ubuntu with the help of the provided command:

sudo apt install android-studio -y

Launch Android Studio in Ubuntu

Install additional plugins for cross-platform programming (if needed): Dart, Flutter, Genymotion

Uninstallation of Android Studio from Ubuntu 22.04

To uninstall Android Studio from Ubuntu, you have to execute the following command:

sudo apt update 
sudo apt purge android-studio  
sudo apt autoremove