Is there a repository for Android Studio?

The download page for Android Studio does not list any repositories, it only offers direct download links. I noticed that there are many Android SDK and tools packages in the Ubuntu repos, but no Android Studio. Is there a frequently updated repository or PPA available for Android Studio?

This question was asked a long time ago back when Android Studio was still in a preview state, however, the answers are all very different and many of the answers consist of custom PPAs, many of which probably do not exist anymore for modern versions of Ubuntu. Therefore, this question needs to be re-asked so that we can collect updated instructions.

1

2 Answers

If you're looking for up to date PPA for Android Studio, it is ppa:maarten-fonville/android-studio— at the time of writing this PPA has supported Ubuntu version up to 19.04 which is current latest release.

Add the PPA.

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

Then, you can either install:

  • Stable version.

    sudo apt-get install android-studio
  • Preview version.

    sudo apt-get install android-studio-preview
1

no need for adding an external repository, android-sdk includes Android Studio!

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like