IntelliJ IDEA 2016.2 Help

Creating a New Android Project

  1. Launch the New Project wizard. If no project is currently opened in IntelliJ IDEA, click Create New Project on the Welcome screen:
    welcome_screen

    Otherwise, select File | New | Project from the main menu.

  2. On the first page of the wizard, select Android in the left pane. In the right pane, IntelliJ IDEA automatically creates the name of your application, company domain, package name and the project location:
    Android_new_project_step_one
    You can edit the specified fields if you like. In our case, we have changed the default name of our application to HelloDroid.
    Note that the package name must have the following format: com.xxx.yyy, where xxx usually stands for your company name, and yyy is the application name. Note that you can use any names here, but the suggested pattern significantly reduces the risk of name conflicts with other applications.
  3. On the next page of the wizard, select a target device where the application will be run and debugged.
    Android_new_project_step_two
  4. On the next page of the wizard, add an activity for your module.
    Android_new_project_step_three
  5. On the next page of the wizard, customize the selected activity. Click Finish to complete the wizard.
    Android_new_project_step_four
  6. Your Android project will be created with the predefined project structure:
    AndroidProjectStructure

See Also

Last modified: 23 November 2016