Open In App

How to Create/Start a New Project in Android Studio?

Last Updated : 10 Apr, 2024
Improve
Improve
Like Article
Like
Save
Share
Report

After successfully installing the Android Studio and opening it for the first time. We need to start with some new projects to start our journey in Android.

In this article, we will learn about How to Create a New Project in Android Studio.

Steps to Create/Start a New Android Project in Android Studio

Below are the steps to start and set up a new Android project in Android Studio.

Step 1: Select the Activity

Select Activity to Mobile. Activity in Android refers to a single screen with a user interface.

first_image

Note: For Beginners, “Empty Activity” is a good recommendation.

Step 2 : Create New Android Project

Then, Name your application in the ‘Application name‘ Text box. By default, the application name appears as “MyApplication” and select the location of the Application you are going to Create.

Package_Name_Application_Page

Then select the Minimum SDK to select the operating system which must be least version to run your app, here “Nougat” is made Minimum SDK, and phones and tablets with versions lower to this OS will not be able to run your apps. Click on “Next”.

Chart_for_Android_Version

In this Step we filled out the data which is mentioned below:

  • Name: Name represents for the Name of the Application
  • Package Name: Package Name is created automatically and is imported in the Programs used in the application.
  • Save Location: Location where Application is stored.
  • Language: It refers to the Programming Language which is used in the Application.
  • Minimum SDK: It refers to the Minimum Andorid Version which will be able to run the Application.
  • Build Configuration Language: It is used for selecting the tool which will create .apk as the final result of the application.

Step 3 (Final One): Then, a default App is Created with all default files.

And you can now start writing the application code.

Directory Structure of the Created Application:

Directories_Created

MainActivity.kt is the main kotlin Program:

MainActivity

Click Here to Learn more about Android to Create Android Application Projects


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads