Setup - KingGainer07/AndroidGuide GitHub Wiki
Android Guide
Kotlin Tutorial: Environment Setup & Android Studio Installation Guide
Android Development Environment Setup
As we have learned in the previous Kotlin Tutorials that Kotlin runs over Java Virtual Machine (JVM), which means we need to install JDK first. But if you are downloading Android Studio we don’t need to pre-install JDK as it comes with the latest OpenJDK embedded in the latest versions, 2.2 and above. But still, if you wish you can install a standalone JDK.
JDK Installation (Not Required for Android Studio)
If you are using any other IDE for Kotlin learning except Android Studio, download & Install JDK from the Oracle Official website. website. After installing JDK we need to set Environment Variables to set the JRE path, for that follow the instructions from this link.
Android Studio Installation Guide
In this tutorial, we will specifically focus on Android Studio installation. To download Android Studio go to the official Android Studio websitewebsite & get the latest version. It will automatically detect your operating system and will show download option for Mac, Windows, or Linux.
After downloading, launch the installation widget and follow the steps provided by the installation widget as you can see in the following
Click Next to Continue to Next step.
Click Next to Continue to Next step.
Click Next to Continue to Next step.
Check start Android Studio checkbox & Click Finish to Continue to Next step.
If some previous Android Studio version was already installed in your system it might ask to import settings from the previous version. You can simply choose “Don’t import Settings” and continue.
Starting Android Studio
Now Android Studio will be automatically launched and you will see the following starting window.
You will also see a progress bar to find the SDK components, let it compile.
Welcome to Android Studio
Now at the time of the first launch of Android Studio, it will show you a welcome window and will prompt you to download the SDK components.
Click Next to continue to the next step.
It will prompt you to choose the type of installation setup either Standard or Custom. We will recommend using Standard, as it will automatically install the latest SDK components for you.
![](Click Next to continue to the next step. It will prompt you to choose the type of installation setup either Standard or Custom. We will recommend using Standard, as it will automatically install the latest SDK components for you.)
Click Next to proceed to Next step.
In the next step it will prompt you to choose a theme, either light or dark, you can choose whatever you like.
Installation of SDK Components
Now you will see a widget downloading SDK components. You don’t need to choose anything here, as it will automatically download the latest SDK components as we have already chosen the “Standard” installation type.
Click Finish to start SDK components installation.
Now you will see a downloading widget, let it complete.
When its done installation, you will see the following popup.
Click Finish to launch Android Studio.
That’s it. We have done Android Studio Installation and now we can create or first Android App, that we will learn in the next tutorial.