how can I open the Android Studio in the Linux versions of Debian?

-1

install the ideology of android studio but when I look for it by its icon I do not include it even in the search of applications I do not see it, in case it is by the terminal, I could facilitate the instruction in advance please and thank you .

    
asked by Daniel Patricio 11.03.2018 в 22:27
source

2 answers

0

This will depend on the way you installed it, if you downloaded a .deb, the most common is to tell you to move it to the directory / opt / if that is the case you should go to said directory and look for the binary of android studio and start it with sh, Debian also allows you to create a shortcut icon but you must first find where you installed Android Studio.

    
answered by 23.03.2018 в 04:51
0

It opens with the same script that is installed, when you download android studio comes with a script called studio.sh the first time you run it installs android studio then it serves to open it you can run it from a terminal and it will open or create an entry desktop: Put in a file

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

and then save the file in /home/your-user/.local/share/applications after this it will appear in the applications menu

    
answered by 23.03.2018 в 09:11