page.title=Creating an Android Project page.tags=project setup helpoutsWidget=true trainingnavtop=true next.title=Running Your App next.link=running-app.html @jd:body

You should also read

This lesson shows you how to create a new Android project with Android Studio and describes some of the files in the project.

  1. In Android Studio, create a new project:
  2. Fill out the fields on the screen. For Application Name use "My First App". For Company Domain, use "example.com". For the other fields, use the default values and click Next

    Here's a brief explanation of each field:

  3. Under Target Android Devices, accept the default values and click Next.

    The Minimum Required SDK is the earliest version of Android that your app supports, indicated using the API level. To support as many devices as possible, you should set this to the lowest version available that allows your app to provide its core feature set. If any feature of your app is possible only on newer versions of Android and it's not critical to the app's core feature set, you can enable the feature only when running on the versions that support it (as discussed in Supporting Different Platform Versions).

  4. Under Add an Activity to Mobile, select Empty Activity and click Next.
  5. Under Customize the Activity, accept the default values and click Finish.

Your Android project is now a basic "Hello World" app that contains some default files. Take a moment to review the most important of these:

app/src/main/java/com.example.myfirstapp/MainActivity.java
This file appears in Android Studio after the New Project wizard finishes. It contains the class definition for the activity you created earlier. When you build and run the app, the {@link android.app.Activity} starts and loads the layout file that says "Hello World!"
app/src/main/res/layout/activity_main.xml
This XML file defines the layout of the activity. It contains a {@code TextView} element with the text "Hello world!".
app/src/main/AndroidManifest.xml
The manifest file describes the fundamental characteristics of the app and defines each of its components. You'll revisit this file as you follow these lessons and add more components to your app.
app/build.gradle
Android Studio uses Gradle to compile and build your app. There is a build.gradle file for each module of your project, as well as a build.gradle file for the entire project. Usually, you're only interested in the build.gradle file for the module, in this case the app or application module. This is where your app's build dependencies are set, including the defaultConfig settings:

See Building Your Project with Gradle for more information about Gradle.

Note also the /res subdirectories that contain the resources for your application:

drawable-<density>/
Directories for drawable resources, other than launcher icons, designed for various densities.
layout/
Directory for files that define your app's user interface like {@code activity_main.xml}, discussed above, which describes a basic layout for the {@code MainActivity} class.
menu/
Directory for files that define your app's menu items.
mipmap/
Launcher icons reside in the {@code mipmap/} folder rather than the {@code drawable/} folders. This folder contains the {@code ic_launcher.png} image that appears when you run the default app.
values/
Directory for other XML files that contain a collection of resources, such as string and color definitions.

To run the app, continue to the next lesson.