Create Android Studio Shortcut on Ubuntu 18.04

John Pili
1 min readApr 14, 2020

You can easily create an Android Studio shortcut by creating an desktop entry using the following the steps below.
In this guide, my Android Studio is installed in/opt/android-studio folder. Your folder location may differ.

1. Open terminal and type

cd ~/.local/share/applications

2. Create a .desktop file using your favorite text editor

nano android-studio.desktop

3. My .desktop file looks like this

[Desktop Entry] 
Version=1.0
Type=Application
Name=Android Studio
Icon=/opt/android-studio/bin/studio.png
Exec="/opt/android-studio/bin/studio.sh" %f Categories=Development;IDE;
Terminal=false
StartupWMClass=jetbrains-android-studio

As a template for desktop entry you can use this snippet

[Desktop Entry] 
Version=1.0
Type=Application
Name=<APPLICATION NAME>
Icon=<LOCATION/ICON.PNG>
Exec="<LOCATION/APP>" %f
Categories=Development;IDE;
Terminal=false

The end result will be like this

Originally published at https://johnpili.com on April 14, 2020.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

John Pili
John Pili

Written by John Pili

I am currently working as a software development manager in Malaysia. I manage and help my team with technical software design and implementation.

No responses yet

Write a response