Forked from lawgimenez/Install Android Studio Manual on Linux
Last active
December 24, 2025 20:12
-
-
Save dxdns/a590d9a09314bb8c1507fc8ba42be97f to your computer and use it in GitHub Desktop.
Install Android Studio Manual on Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo tar -zxvf ~/Downloads/android-studio-*-linux.tar.gz | |
| sudo mv ~/Downloads/android-studio /opt/ | |
| sudo ln -sf /opt/android-studio/bin/studio.sh /bin/android-studio | |
| sudo nano /usr/share/applications/android-studio.desktop | |
| [Desktop Entry] | |
| Version=1.0 | |
| Type=Application | |
| Name=Android Studio | |
| Comment=Android Studio | |
| Exec=bash -i "/opt/android-studio/bin/studio.sh" %f | |
| Icon=/opt/android-studio/bin/studio.png | |
| Categories=Development;IDE; | |
| Terminal=false | |
| StartupNotify=true | |
| StartupWMClass=jetbrains-android-studio | |
| Name[en_GB]=android-studio.desktop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment