Android Studio - Installing on Ubuntu 14.04 64Bits

# HOW TO INSTALL AndroidStudio on UBUNTU 64bits
#
# Create a file on the desktop with the name install.sh
# Copy the content of this page to the file
#
# execute:
#  $cd Desktop
#  $sh install.sh

# adding repository for android studio
sudo apt-add-repository -y ppa:paolorotolo/android-studio
sudo apt-get update

# Install JVM
sudo apt-get -y install openjdk-7-jdk

# 32 Bits Libs
sudo apt-get -y install lib32z1
sudo apt-get -y install libc6-i386
sudo apt-get -y install libncurses5:i386
sudo apt-get -y install libstdc++6:i386

# Instakk ANDROID Studio
sudo apt-get -y install android-studio

# Launch android studio 
sh /usr/share/android-studio/data/bin/studio.sh &

No comments:

Post a Comment