Install And Setup Android Studio Ubuntu
Get Installation File
Download tar gz file from official site https://developer.android.com/studio
Run Command to Install Android to path opt
sudo tar -xzf android-studio*.tar.gz -C /opt
note
For a 64-bit version of Linux, first install the required libraries for 64-bit machines.
Required libraries for 64-bit machines
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386
Launch Android Studio
To launch Android Studio, open a terminal, navigate to the ~/opt/android-studio/bin/
directory, and
execute studio.sh
.
Make shortcut .sh file to launch Android Studio
open-android-studio.sh
#!/bin/bash
cd /opt/android-studio/bin
./studio.sh
To Setup Android Emulator
Visit [Setup Android Emulator]