Android sdk install java home

Install & Setup Android Studio Java JDK & SDK

Android Studio, Java JDK & SDK is part of Android Development for building Android Apps. In this post, 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 the SDK (Software Development Kit) setup. If you are a beginner and you don’t know, what is Android Studio, Java JDK, and SDK? So let me give you an overview.

1. Java

The Android developers mostly used Java programming languages to build Android apps. If we want to use Java tools or functionality, so for that we have need to download and install Java Development Kit (JDK) is a distribution of Java Technology by Oracle Corporation.

It implements the Java Language Specification and the Java Virtual Machine Specification and provides the Standard Edition of the Java Application Programming Interface.

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, tally ERP 9 for accounting and Photoshop for photo editing, and much more, the 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:

The Android SDK includes The Following:

Platform tools are used to help the features for the current android platform including ADB, which is working as a bridge to communicate with emulators or devices.

Android SDK Tools is a part of the Android SDK. It is required for building Android apps.

SDK is a part of the Android SDK and it includes the complete set of development and debugging tools, such as an emulator, SD card, SQLite, APK builder, etc.

ADB is a tool that gives us to communicate with the device, such as installing and debugging the Android apps.

The Android Emulator is a virtual Android device. It’s called an emulator and it provides to live test your application on different devices including the Android API level without needing to have each physical device. The emulator provides you with almost all of the functionality of a real Android device.

Читайте также:  Python двумерный массив печать

Install & Setup Android Studio Java JDK & SDK

  • Before installing the Android SDK, you need to install the JDK (Java Development Kit). if you want to verify the java version then go to run (start button+R) and open CMD after typing” javac -version “.

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 Micro-systems, now it is part of Oracle. check it– http://www.oracle.com/technetwork/java/javase/overview/index.html.

Un-Install Older Version(s) of JDK/JRE

  • Install only the newest Java JDK.
  • If you have installed the older versions of JDK/JRE, uninstall all of them.
  • Go to Control Panel >> “Programs” >>Select Programs and Features” >>Uninstall ALL programs begin with “Java”, like “Java SE Development Kit, etc.

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 as per your system requirement.

Step 2: Install JDK

  • Double clicks on download to 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 the following steps:

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.

Install & Setup Android Studio, Java JDK & SDK

2. Install “Android Studio IDE”

Android Studio, which is an Integrated Development Environment (IDE) based on IntelliJ is a popular Java IDE

(For Windows)

  1. Verify that environment variable JAVA_HOME is set to the JDK installation directory by the using command “ set JAVA_HOME “.
  2. 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.
  3. Go to “Android Studio” @ https://developer.android.com/studio ⇒ Click “Download Android Studio for Windows 64-bit.
  4. Run .exe step >> Launch Android Studio. Continue to the Next Step.

Android Studio IDE by default will be installed in “ C:\Program Files\Android\Android Studio “.

Android SDK by default will be installed in the” c:\Users\username\AppData\Local\Android\Sdk “.

3. Installing the Android SDK

Note: You can copy the SDK from your friends or any other computer with the same OS because the download size is 3GB of zip data and expand to 5 GB of disk data.
  1. Start Android Studio.
  2. Select >Tools >SDK Manager.
  3. As you can see default Settings dialog box, click these tabs to install Android SDK platform packages and developer tools.
  1. SDK Platforms: Select the latest Android SDK package.
  2. SDK Tools: Select these Android SDK tools:
    • Android SDK Build-Tools.
    • NDK.
    • Android SDK Platform-Tools.
    • Android SDK Tools.
Читайте также:  %TITLE%

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.

4. Now ready to launch your First Android App

Android native apps are basically written in Java and Kotlin and XML is use for UI design. I’ll hope that you have some basic knowledge of Java and XML.

5. Create a New Android Project

  • Launch Android Studio.
  • Choose “Start a new Android Studio Project”.
  • Select a Project Template >>select “Phone and Tablet” tab >> Empty Activity >> Next.
  • Configure your project :
  • 1- ⇒ Set “Name” to “Hello Android” (this will be the “Title” in your phone’s app menu)
  • 2- ⇒ The “Package name” and “Save Location” will be updated automatically
  • 3- ⇒ In “Language”, select “Java”
  • 4- ⇒ Leave the “Minimum API Level” and the rest to default ⇒ Finish.
  • It could take a few minutes to set up your first app.

6. Run the App on Real Android Phones

Run the app on a real device. Follow step by step.

  • Connect the real device to your computer. Make sure that you have the “USB Driver” for your device installed on your computer. If not, go to https://developer.android.com/studio/run/oem-usb.html to Install OEM USB Drivers.
  • Enable “USB Debugging” mode on your real device:
    Enable “Developer options” through “Settings” ⇒ About Phone ⇒ Scroll to the bottom and tap “Build number” seven (3 or 4) times until “Developer Mode” is displayed.
  • Return to the previous screen to find “Developeroptions” ⇒ Open “Developer options” ⇒ Enable “USB debugging”.
  • Go to “Settings” ⇒ Select Developer options” ⇒ Check “USB Debugging“.
  • In Android Studio, select the “Run” menu⇒ “Run app”⇒ Your device will be listed under “Choose a running device” ⇒ Select the device and press OK ⇒ “Hello-world” will appear on your phone.

All setup are done, Congratulation for your first Android App 🙂

Warp Up

🎉

And this wraps up this short blog post! You could’ve been doing a million other things, but you decided to sit and read through this article to know How to Install & Setup Android Studio Java JDK & SDK. It shows that you’re committed to improving your skills in Android development ! It shows your passion for Android development! Hopefully, you found this blog post helpful! If you liked this article, you can checkout my other articles. As always, I would like to thank you for taking the time to read this article :). I wish you the best of luck! Happy coding ! Cheers!

You May Also Like:

Источник

Читайте также:  Как настроить php на nginx

Install OpenJDK, Android command line tools and Android SDK on Ubuntu

Installing OpenJDK with Android SDK and tools

If you want to develop an Android application or game, it’s essential to have Java Development Kit (JDK), Android command line tools, and the SDK. With utilities like keytool , you can generate app signing keys, with, adb debug the application on a real device, with sdkmanager you can install Android SDKs and so on.

In this tutorial you will learn how to install OpenJDK, Android command line tools and SDK on Debian/Ubuntu Linux system without having to install heavy Android Studio. It also may be suitable for other Linux distributions, just make sure to install proper packages.

Install OpenJDK 11

To install Open Java Development Kit version 11.0.16+ (it will install the latest), run the following commands:

sudo apt update sudo apt install openjdk-11-jdk

After installation, you can check if Java installed by running java -version and javac -version . It should output the current version of tools.

Configure environment variables

Java tools will be installed in JAVA_HOME environment variable. Therefore you need to set this variable properly. Also, add /bin subdirectory from Java home to PATH , so programs from there are accessible without prefixes. To do so, add this to the end of your ~/.bashrc file:

export JAVA_HOME=$(dirname $(dirname $(readlink -f $(which java)))) export PATH=$PATH:$JAVA_HOME/bin

First command takes full path to java executable, reads this symbolic link, gets parent of the parent directory and sets the final value to JAVA_HOME variable. Second command appends bin directory from JAVA_HOME to PATH . Relaunch your terminal or run source ~/.bashrc to read new variables.

Install Android command-line tools

I recommend downloading Android packages from the official Android developer website instead of using your Linux distribution Android packages. Go to https://developer.android.com/studio/#command-tools and download the Linux archive.

Screenshot from developer.android.com with cursor hovering over command line tools zip archive for Linux

Read Android Software Development Kit License Agreement and confirm to continue. Then navigate to Downloads and install the tools:

cd ~/Downloads unzip commandlinetools*.zip sudo cp cmdline-tools/bin/* $JAVA_HOME/bin/ sudo cp -r cmdline-tools/lib/* $JAVA_HOME/lib/

Install Android SDK

Create a directory where Android SDK will be installed ( ~/Android/Sdk is the recommended path):

Now you need to install Android SDK. I used the command below. I took it from Godot Engine Android export guide.

sdkmanager --sdk_root=$HOME/Android/Sdk "platform-tools" "build-tools;30.0.3" "platforms;android-31" "cmdline-tools;latest" "cmake;3.10.2.4988404" "ndk;21.4.7075529"

Enter ‘y’ if you accept license terms. Wait for the command to finish execution. Next, set up Android-related environment variables:

export ANDROID_HOME=$HOME/Android/Sdk export ANDROID_SDK_ROOT=$HOME/Android/Sdk export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/platform-tools

Relogin to your shell or run source ~/.bashrc and test if tools are installed properly. For example, you can check your version of ADB using adb —version . Your should see something like this if everything is installed correctly:

Android Debug Bridge version 1.0.41 Version 33.0.2-8557947 Installed as /home/bob/Android/Sdk/platform-tools/adb

Источник

Оцените статью