Tarkan Batar
Tarkan Batar

Reputation: 91

How to open Android Studio on Kali Linux

I have installed Android Studio successfully but I don't know how to open it.
I give hard effort for open it on its own folder but i didn't find anything in its destination

I tried every file to open it, but it did not work.

Upvotes: 3

Views: 9467

Answers (3)

faddi
faddi

Reputation: 81

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

Upvotes: 3

deepakchethan
deepakchethan

Reputation: 5600

You could add an alias for android, to run it from the terminal. Open the .bashrc file and type in
alias android="sh path/to/studio.sh"
and save it. Restart the terminal or source the bash by typing
source .bashrc.
When you want to start android, just type in android from the terminal.

Upvotes: 2

developer_hatch
developer_hatch

Reputation: 16214

If you are new, I recommend install synaptic:

sudo apt-get install synaptic

after install it run it:

sudo synaptic

and then type there android, and the program will be listed

Upvotes: 2

Related Questions