In this guide, we are going to look at how to install Android Studio on Linux Mint 22. Android Studio is the official Integrated Development Environment for developing Android apps and it is based on IntelliJ IDEA. Android Studio offers many more features on top of what IntelliJ IDEA already provides. These features include:

  • A unified environment for developing all Android devices
  • Extensive testing tools and frameworks
  • A flexible Gradle-based build system
  • Ability to apply changes to push code and resource changes to a running app without having to restart the app
  • A fast and feature-rich emulator
  • Provides code changes and Github integration.
  • Supports C++ and NDK
  • Provides lint tools which help in catching performance, version compatibility, usability and other problems.
  • Support for Google Cloud platform enabling integration of Google Cloud messaging and App Engine.

Installing Android Studio on Linux Mint 22

Before installing Android Studio on Linux Mint 22, install the required dependencies.

Install Java

First we need to install Java, which is necessary to Android Studio to work properly. Run the below command to install Oracle JDK on Linux Mint 22.

sudo apt install -y default-jdk default-jre

Confirm installation of Java:

How To Install Android Studio on Linux Mint 22 01

Install Android Studio on Linux Mint 22

We need to add Android Studio repository to Linux Mint 22 to enable us install Android Studio:

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

You should see an output as below:

How To Install Android Studio on Linux Mint 22 02

Now update your apt and go ahead to install Android Studio on Linux Mint 22:

sudo apt update
sudo apt install android-studio

At this point, you have successfully installed Android Studio on Linux Mint 22. Launch Android Studio from your Linux Mint application manager as shown below:

How To Install Android Studio on Linux Mint 22 03

Configure Android Studio on Linux Mint 22

Once you launch, you will see a screen as shown:

How To Install Android Studio on Linux Mint 22 04

Next is the Welcome window, click Next:

How To Install Android Studio on Linux Mint 22 05

Then select Standard as the installation type, then click Next:

How To Install Android Studio on Linux Mint 22 06

Also click Next to proceed to download SDK components:

How To Install Android Studio on Linux Mint 22 07

Then Accept the License terms and conditions:

How To Install Android Studio on Linux Mint 22 08

Click Next on the KVM Acceleration window to start the download:

How To Install Android Studio on Linux Mint 22 10

After the component download is complete, click on Finish:

How To Install Android Studio on Linux Mint 22 11

You will be prompted to start a new Android project as shown:

How To Install Android Studio on Linux Mint 22 12

Next, select your project template and click Next:

How To Install Android Studio on Linux Mint 22 13

In the next page, configure your project name and location the click Finish:

How To Install Android Studio on Linux Mint 22 14

Enjoy your Android development!

How To Install Android Studio on Linux Mint 22 15

This has been a step-by-step guide on how to install Android Studio on Linux Mint 22. I hope you have enjoys. Check other guides below:

LEAVE A REPLY

Please enter your comment!
Please enter your name here