Android Studio and Java

Hi) I know Python well, and as soon as I realized that I wanted to try to make my own application, I decided to study this topic. I started working with Android Studio. The question is, do I need to download Java first, and only then Android Studio, or does it work well anyway??? Just in some sources they write that Android Studio will not work without it, in others they just download it and that's it, without any Java. Are there any people familiar with this? Please help me.

Author: Просто Аня, 2020-07-27

2 answers

Android Studio already has a built-in compiler and the language libraries themselves.You will need to download the smartphone emulator and the Android OC if you plan to run everything on your computer. But everything will be prompted to download during the installation of Android Studio.

If you need some other version of Java, then in the settings of Android Studio, you can select the desired version and it will load it itself.

 2
Author: Bogdan Vorobyev, 2020-07-27 21:20:46

Anya,

  1. Android Studio is a development tool (IDE), not a language. As in python, there is a PyCharm development tool - here, too, there is an Android Studio development tool

  2. Android is an OS that is being developed using Android Studio

  3. Android Studio doesn't work without 2 important components:

    A) Java - more precisely, JDK at least version >= 7.0 (I recommend 8.0)

    B) Android SDK

  4. Development Android Studio is run in 3 programming languages: Java, Kotlin, and C++. At the moment, the recommended language is Kotlin, but there will be more examples and documentation in Java. The development of speed-critical sections is being carried out in C/C++.

 2
Author: Barmaley, 2020-07-29 11:24:56