Install & Setup Android Studio Java JDK & SDK

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 9

Install & Setup Android Studio Java JDK & SDK

Android Studio, Java JDK & SDK is part of Android Development to building
Android Apps. In this , we’re going to learn “How to install & Setup Android
Studio Java JDK & SDK“. We’ll also see, how to download the Android
Studio and Java JDK, as well as set up the SDK (Software Development Kit).

•Java.
•Android Studio
•SDK
1. Java

Android developers mostly used Java programming languages to build Android apps and if
we want to use java tools or functionality, so we have to install Java JDK. It is the Java
Development Kit (JDK) released by Oracle Corporation.

2. Android Studio: Android studio is an IDE

What is IDE?
IDE is an integrated development environment. In simple words, this is a tool that gives us
an environment to create an Android app. There are many tools are available in the market
for different purposes like MS word for documentation creation, PowerPoint for
presentation making, same as Android studio is a tool or IDE for building Android apps.
3. SDK
The Android SDK stands for a software development kit. It is a set of development
tools that are used to develop applications.

The Android SDK includes the following:

•Required libraries
•Debugger
•An emulator
•Offline documentation for the Android application program
•Tutorials for the Android OS.
1. Install JAVA JDK
The Java Development Kit (JDK), officially called “Java SE“, is needed for writing Java
programs. The JDK is freely available from Sun Microsystems, now is it is part of Oracle.

Step 1: Download JDK


Goto Java SE download site
http://www.oracle.com/technetwork/java/javase/downloads/index.html.
Click the “Oracle JDK Download” button.
Check “Accept License Agreement”.
Choose the JDK for as per your system requirement.

Step 2: Install JDK


Dubble clicks on download setup and Run.
By default, JDK is installed in the directory “C:\Program Files\Java\jdk-13.0.“, Accept the
defaults.
Step 3: Verify the JDK Installation
Open a CMD via following below step:

Click the Search button and Type “cmd” ⇒ Choose “Command Prompt”, or Right-
click “Start” button ⇒ run ⇒ enter “cmd”.
the following commands to verify that JDK/JRE is properly installed and display their
version.
2. Install “Android Studio IDE”
Verify that environment variable JAVA_HOME is set to the JDK installation directory by
the using command “set JAVA_HOME“.
Check the system requirements for Android Studio and SDK (
https://developer.android.com/studio#Requirements) e.g > For Windows 7,8,10,
recommended 4GB of RAM, 4GB of disk space, and 1280×800 minimum screen
resolution.
Go to “Android Studio” @ https://developer.android.com/studio ⇒ Click “Download
Android Studio for Windows 64-bit.
Run .exe step >> Launch Android Studio. Continue to the Next Step.
3. Installing the Android SDK
•Start Android Studio.
•Select >Tools > SDK Manager.
•As you can see default Settings dialog box, click these tabs to install Android SDK
platform packages and developer tools.
•SDK Platforms: Select the latest Android SDK package.
•SDK Tools: Select these Android SDK tools:
• Android SDK Build-Tools.
• NDK.
• Android SDK Platform-Tools.
• Android SDK Tools.
4. Click Apply. Android Studio starts installing your selected packages. After
completing the installation, the Status of the installed packages and tools changes
from Not Installed to Installed.

5. Click OK.

You might also like