How to use the Zip File In Android

Installing Java OpenJDK

To install Android Studio we require OpenJDK version 8 or above to be installed in our system. First, we will install OpenJDK 8. The installation is very simple, steps are mentioned below:

i). We can start by updating the package index:

$ sudo apt update

ii). Now install the OpenJDK 8 package using the below command

$ sudo apt install openjdk-8-jdk

iii). To verify the installation we can use the below command to check the version:

$ java -version

The output will be something like this:

openjdk version "1.8.0_191"
OpenJDK Runtime Environment (build 1.8.0_191-8u191-b12-2ubuntu0.18.04.1-b12)
OpenJDK 64-Bit Server VM (build 25.191-b12, mixed mode)

Downloading Android Studio

To download and install the Android Studio, visit https://developer.android.com/studio. Click on the “Download Android Studio Giraffe” button.

A prompt asking us to accept all the licenses will appear. Scroll to the bottom and accept the license and click on “Download Android Studio Iguana | 2023.2.1 Patch 1 for Linux”.

Note: The version number may vary based on the time of installation

After downloading the zip file, locate it in your file explorer and extract it.

Copy over the extracted folder to /opt/local.

cd /path/to/extracted/folder
sudo cp android-studio/ /opt/local/ -v

Now Android Studio has been installed on our Ubuntu desktop.

How to Install Android Studio on Ubuntu?

Android Studio is a full-featured cross-platform IDE that helps us to build applications for Android devices. Android Studio is based on JetBrains’ IntelliJ IDEA. This IDE includes everything we need for Android development. Android Studio build system is powered by Gradle allowing you to make multiple build variants for various devices from one project. This article will explain the way to install Android Studio on Ubuntu 20.04. We can use the same instructions for older Ubuntu versions and any Ubuntu-based distribution, including Ubuntu, Linux Mint, and Elementary OS.

Prerequisites: We need to be logged in as a user with sudo access. It will make our system able to install packages on our Ubuntu system.

Similar Reads

System Requirements for Installing Android Studio in Ubuntu

These are some important specifications our machine needs to meet:...

Methods to Install Android Studio on Ubuntu

There are multiple methods to Install Android Studio on Ubuntu as mentioned below:...

1. From The Ubuntu Software Centre

We can easily install Ubuntu software from Ubuntu Software Centre but desired software must exist in the software store. To install Android Studio we can visit the Ubuntu Software Centre and search for Android Studio. Once we found the software easily clicked on the install button. We will get a password prompt to confirm the installation process. Once the installation is completed we will have the Android Studio icon in our application tray. Once it is installed successfully, we can check the final setup section....

2. Using The Snap Tool

When the snap tool is available it becomes too easy to install software packages. We do not have to modify any files or type in any scary commands. But we need to have Snap installed on our machine in the first place....

3. Install Android Studio Using Repository

There are Steps to Install Android Studio using Repository....

4. Using the Zip File

Installing Java OpenJDK...

Starting Android Studio

Once the Android Studio is installed in the system using snap, we can start Android Studio through our terminal by typing android-studio in our terminal or by clicking on the Android Studio icon....