For some reason I couldn't download Android Studio and Android Studio bundle. I download them both separate each other. In install section of Android Studio there is a part to specify Android SDK location. I locate the Android SDK folder and go on but this error message appears for no reason:
Asked
Active
Viewed 789 times
2 Answers
1
This is my way to install Android Studio in Ubuntu.
Open your terminal and input the commands below:
sudo apt-add-repository ppa:paolorotolo/android-studio
sudo apt-get update
sudo apt-get install android studio

David Foerster
- 36,264
- 56
- 94
- 147

陈伟达
- 26
- 1
0
Try umake:
sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make
sudo apt-get update
sudo apt-get install ubuntu-make
umake android --accept-license
better for most development type stuff.
Note: you must accept the license as above.

Thufir
- 4,551