Install android studio in ubuntu
Install android studio in ubuntu guide you through the process of installing Android Studio on Ubuntu. Please follow these steps: Download Android Studio: Visit the https://developer.android.com/studio . Click on the "Download Android Studio" button. Extract the downloaded file: Open a terminal and navigate to the directory where you downloaded Android Studio. Extract the archive using the following command: bash tar -xvzf android-studio-*.tar.gz Move Android Studio to a suitable location: Move the extracted folder to a location where you want to install Android Studio. For example: bash sudo mv android-studio /opt Set up environment variables: Open your ~/.bashrc or ~/.zshrc file using a text editor (e.g., nano , vim , or gedit ). Add the following lines at the end of the file: bash export ANDROID_HOME= $HOME /Android/Sdk export PATH= $PATH : $ANDROID_HOME /emulator export PATH= $PATH : $ANDROID_HOME /tools export PATH= $PATH : $ANDROID_HOME /tools/bin export PATH= $...