Android

Android Environment Setup

Android Environment Setup

Android application development is compatible with almost all operating systems including Windows, macOS, and Linux. And the tools that you need for android development are available online for free. So that you can simply download them and start android development. 
The software that you need to download to start Android application programming is as:

  • Android Studio Development kit
  • Java JDK5 or later version

For the Android application development environment, first, we are going to set up JDK on our systems:

The latest version of Java JDK can be downloaded from the link given below:

http://www.oracle.com/technetwork/java/javase/downloads/index.html 

You will also find the download and installation guide on their official platform. After installation, you need to set the PATH and environment variables for JAVA_HOME. 
For Windows users, you have to open the C:/autoexec.bat file and then put the instructions in that file:

set PATH = C:\jdk19.0.1\bin:$PATH%
set JAVA_HOME = C:\jdk19.0.1

Make sure you are using the exact same name as the installed JDK file in your C drive. 
For Linux users, if the Java SDK is installed in /user/local/jdk19.0.1 and you are using C shell for setting environment variable and path, then you can put the following code in your ‘.cshrc’ file:

setenv PATH /user/local/jdk19.0.1/bin:$PATH
setenv JAVA_HOME /user/local/jdk19.0.1

For Android Studio setup, you can simply download Android Studio from the given link below:

https://developer.android.com/studio
 

Top course recommendations for you

    Introduction to Kubernetes
    2 hrs
    Beginner
    6.8K+ Learners
    4.29  (252)
    Angular7 for Advanced Level
    3 hrs
    Advanced
    9.6K+ Learners
    4.62  (229)
    Java Algorithms
    2 hrs
    Intermediate
    19K+ Learners
    4.49  (419)
    Visual Studio Online
    1 hrs
    Beginner
    13K+ Learners
    4.4  (463)
    Software Testing Tutorial
    1 hrs
    Beginner
    122.6K+ Learners
    4.49  (8288)
    Sorting Algorithms in C
    3 hrs
    Beginner
    11.5K+ Learners
    4.48  (194)
    Programming Basics
    1 hrs
    Beginner
    167K+ Learners
    4.48  (8432)
    Coding Environment
    1 hrs
    Beginner
    18.7K+ Learners
    4.41  (359)
    JQuery Tutorial
    1 hrs
    Beginner
    10.9K+ Learners
    4.41  (543)
    What is IoT?
    1 hrs
    Beginner
    29.6K+ Learners
    4.46  (2187)