How to download and install android studio (latest)

Android

How to download and install android studio.

Firstly you have to know either your pc already installed jdk software or not. If not then click the link  https://www.oracle.com/java/technologies/javase-jdk16-downloads.html and below the “Windows x64 Installer(if operating system is 64 bit)” or  “Windows x32 Installer(if operating system is 32 bit)”

System Requirements

  • Microsoft Windows 7/8/10 (32-bit or 64-bit)
  • 4 GB RAM minimum, 8 GB RAM recommended (plus 1 GB for the Android Emulator)
  • 2 GB of available disk space minimum, 4 GB recommended (500 MB for IDE plus 1.5 GB for Android SDK and emulator system image)
  • 1280 x 800 minimum screen resolution.

Then download and install Java SE Development Kit 16(jdk).

Now it is time for Install and Set up Android Studio in Windows

Link for Android studio download: https://developer.android.com/studio/

Follow every steps with the video tutorials.

For Android app development Android Studio is the official IDE. It is based on JetBrains IntelliJ IDEA software also provides many excellent features that enlarge productivity when building Android apps, such as:

  1. Anyone can develop for all Android devices such kind of environment.
  2. Modify to push code and resource into the running app without restarting the app.
  3. A flexible Gradle-based build system with fast and feature-rich emulator.
  4. GitHub and Code template to develop common app features and import sample code.
  5. Extensive testing tools and frameworks along support C++ and NDK.
  6. Built-in support for Google Cloud Platform, making it easy to integrate Google Cloud Messaging and App Engine, and many more.

Installation Guideline:

Step 1: Head over to this link to get the Android Studio executable or zip file.

Step 2: Click on the Download Android Studio Button. Click on the “I have read and agree with the above terms and conditions” checkbox followed by the download button.

Click on the Save file button in the appeared prompt box and the file will start downloading.

Step 3: After the downloading has finished, open the file from downloads and run it. It will prompt of the dialog box.

Click on next. In the next prompt, it’ll ask for a path for installation. Choose a path and hit next.

Step 4: It will start the installation, and once it is completed.

Click on next.

Step 5: Once “Finish” is clicked, it will ask whether the previous settings need to be imported [ That means, if the android studio had been installed earlier], or not. It is better to choose the ‘Don’t import Settings option’. Click the OK button.

Step 6: This will start the Android Studio. Meanwhile, it will be finding the available SDK components.

Step 7: After it has found the SDK components, it will redirect to the Welcome dialog box.

Click on Next.

Choose Standard and click on Next. Now choose the theme, whether the Light theme or the Dark one this is your choice. The light one is called the IntelliJ theme whereas the dark theme is called Darcula. Choose as required.

Click on the Next button.

Step 8: Now it is time to download the SDK components.

Click on Finish. Components begin to download let it complete.

The Android Studio has been successfully configured. Now it’s time to launch and build apps. Click on the Finish button to launch it.

Step 9: Click on Start a new Android Studio project to build a new app.

0 Comments

You may find interest following article

Chapter 4 Relational Algebra

Relational Algebra The part of mathematics in which letters and other general symbols are used to represent numbers and quantities in formula and equations. Ex: (x + y) · z = (x · z) + (y · z). The main application of relational algebra is providing a theoretical foundation for relational databases, particularly query languages for such databases. Relational algebra...

Chapter 3 Components of the Database System Environment

Components of the Database System Environment There are five major components in the database system environment and their interrelationships are. Hardware Software Data Users Procedures Hardware:  The hardware is the actual computer system used for keeping and accessing the database. Conventional DBMS hardware consists of secondary storage devices, usually...

Chapter 2: Database Languages and their information

Database Languages A DBMS must provide appropriate languages and interfaces for each category of users to express database queries and updates. Database Languages are used to create and maintain database on computer. There are large numbers of database languages like Oracle, MySQL, MS Access, dBase, FoxPro etc. Database Languages: Refers to the languages used to...

Database basic overview

What is DBMS? A Database Management System (DBMS) is a collection of interrelated data and a set of programs to access those data. Database management systems (DBMS) are computer software applications that interact with the user, other applications, and the database itself to capture and analyze data. Purpose of Database Systems The collection of data, usually...

Laravel – Scopes (3 Easy Steps)

Scoping is one of the superpowers that eloquent grants to developers when querying a model. Scopes allow developers to add constraints to queries for a given model. In simple terms laravel scope is just a query, a query to make the code shorter and faster. We can create custom query with relation or anything with scopes. In any admin project we need to get data...