Android Studio is the most popular and powerful IDE for developing and creating Android application. It is specially developed by Android to created every types of Android application. It has also in-built emulator to test application on any virtual device. It also provides APK analyzer to reduce your Android app size by inspecting the contents of your app APK file even if it is not developed in Android Studio.
In this article, we will discuss on how to install Android Studio in your Linux operating system.
To install and work in Android Studio, you need bellow system requirements.
1.
GNOME or KDE desktop
Tested on gLinux based on Debian (4.19.67-2rodete2).
2.
64-bit distribution capable of running 32-bit applications
3.
GNU C Library (glibc) 2.19 or later
4.
4 GB RAM minimum, 8 GB RAM recommended
5.
2 GB of available disk space minimum,
4 GB Recommended (500 MB for IDE + 1.5 GB for Android SDK and emulator system image)
6.
1280 x 800 minimum screen resolution
There are many ways to install Android Studio in Linux operating system. We will discuss on some of easy ways to install.
Download from official Website
This is the easy and simple way to install Android Studio in your Linux OS. For that, first go to Download page of Android studio's official website. And click on Download Android Studio button. This will open pop-up modal box. Now check on Terms and Condition checkbox and click Download button.
This will download package file of latest version of Android Studio.
After that unzip the package file with GUI or from the Terminal via command line system.
tar xvzf android-studio-ide-191.6010548-linux.tar.gz
Then Go to android-studio/bin
folder
cd android-studio/bin
And run the bellow command
./studio.sh
This will open start Android Studio with bellow pop-up modal.
You can also import the settings or skip and direct start Android Studio. It will now open Application create wizard. Now you can start to create yoour awesome application.
Note:
If you do not need Android Studio, you can download the basic Android command line tools below. You can use the included sdkmanager to download other SDK packages.
One other easy way to install is direct install from the Software Center application like Ubuntu has Ubuntu Softwares.
For that open Software application and search for Android Studio and open the bellow application page. Now click Install button. It will ask for user password and will start to install Android Appllication.
After installation complete, search Android Studio and open. Now you can start creating your awesome Android application.
Install via Command Line for Ubuntu
One simple way is install from the Terminal. In this method, you need to install snap. It is a software deployment and package management system built by Canonical.
Install snap by running bellow command.
sudo apt install snapd
And then install Android Studio
sudo snap install android-studio
To remove Android Studio, run the bellow command
sudo snap remove android-studio
It will start to uninstall Android Studio.
This is the way you can install Android Studio. In the next chapter we will discuss on how to create simple.
Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]
How to sort an associative array by key in PHP
Use the PHP ksort() and k...How to Get Current Month Records in Laravel
You may want to add filter while fetchin...jQuery and JavaScript Code Examples
In the previous article, we have discuss...How to move an element into another element using jQuery
Use the jQuery .appendTo() Method You...How to remove white space from the end of a string in PHP
Use the PHP rtrim() function...