Create a new Android app project in Android Studio

Tiempo de lectura: 2 minutos

Hello, today we are going to learn how we can create a new project with Android Studio.

The first thing we need to do is open Android Studio and click on New Project.

Now it will ask for the type of project. In our case, we choose Empty Activity.

We click Next. And now we have to indicate the name of the application and the package. It is very important to indicate the package name correctly, as it will be the unique identifier of our APP in the store if we publish it. The format is com.devcodelight.

We choose the minimum SDK (depending on your choice, it will select a number of compatible devices) and the build language (we can choose between Kotlin and Groovy by default), the latter is regardless of the language we use for development:

And we click finish.And we already have our APP ready to start developing.

Leave a Comment