How to open Android Studio on Kali Linux

I have installed Android Studio successfully, but I don't know how to open it.
I am working hard to open it in my own folder, but I didn’t find anything in its purpose.

I tried every file to open it, but it didn't work.

+3


source to share


3 answers


If you are a beginner, I recommend installing synaptic:

sudo apt-get install synaptic

      

after installation, run it:



sudo synaptic

      

and then enter there android

and the program will be listed

+2


source


sudo sh / path_installed / android / bin / studio.sh



+2


source


You can add an alias for android to run it from terminal. Bashrc file and enter
alias android="sh path/to/studio.sh"


and save it. Restart your terminal or enter bash by typing
source .bashrc

.
When you want to start android, just type android from terminal.

+1


source







All Articles