I'm going to write android apps using intellij-ultimate. When I want to run the code I have to choose a device I can create a virtual device or use a connected device to run my code. I've connected a Samsung s4mini but intellij doesn't recognize it. Can anyone help? Thanks for help.
01 Answer
Android studio has it's installation instructions here
This process can be done by downloading the tar.gz file.
wget Unpack this ZIP file as regular user and move the uncompressed folder into /usr/local you'll need super privilñeges for that.
Then install this dependecies
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386In the Android studio folder you can CD into the bin folder and execute
Simply run
/usr/local/android-studio/binstudio.shAnd follow the instructions in the GUI, I use a separate HDD for the HOME folder so kept the installation of the SDK there as suggested by the Installer wizard.
2