junaidp
junaidp

Reputation: 11201

I dont see the option for Android type under create new project in intelliJ

I Installed Android SDK and JDK.

In SDK Manager I installed the packages (Android 5.1.1 API(22), Everything under 'tools' and every thing under'extras').

I open IntelliJ , Click on 'Create New Project' Here i dont see any option for Android...

Screenshot:

http://screencast.com/t/z2yv2HkCi

Also if i go to some project's structure It never show me the option for adding Android SDK..

http://screencast.com/t/z2yv2HkCi (no option to add android SDK)

I am using IntelliJ IDEA 14 Ultimate.

Upvotes: 4

Views: 1578

Answers (2)

Nelson John
Nelson John

Reputation: 154

Try to enable 'Android Support' plugin by going to Settings->Plugins->Enable Android Support

Upvotes: 4

user5133280
user5133280

Reputation:

  1. Do one of the following:
    • If you are going to create a new project: click Create New Project on the Welcome screen or select File | New | Project. As a result, the New Project wizard opens.
    • If you are going to add a module to an existing project: open the project you want to add a module to, and select File | New | Module. As a result, the New Module wizard opens.

Also check this out :

  1. On the first page of the wizard, in the left-hand pane, select Android. In the right-hand part of the page, select Gradle: Android Module. Click Next.

  2. Specify your Android module settings, and click Next.

  3. Specify the settings for your Android-Gradle Foreground configuration, and click Next.

  4. Select an Android application template from the list, and click Next.

  5. Specify the settings for the selected Android Activity template, and click Next.

  6. Specify the name and location settings.

    Click Finish.

Also check this out : How do I set up IntelliJ IDEA for Android applications?

Upvotes: 0

Related Questions