Open In App

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

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.



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.

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”.

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

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:

MainActivity.kt is the main kotlin Program:

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

Article Tags :