How to create new project in android studio?
1) Open Android studio, then find the File option from the menu bar and go to New => New Project.
2) Now one new dialog box is open and asks for the project details Application name, Company Domain, and project location.
Application name
No need to enter a unique name compare with the play store, this name is displayed under the application icon.
Company Domain
It must be a unique comparison between the google play store (If you created the name and the same name already in playstore it won't show any error message, but in publishing time it will show an error).
3) then press the Next button
In this window select the minimum target SDK, wear, TV, and android auto.
Minimum SDK
Here you can select the minimum required android os version.
Android TV
It will indicate this application is applicable for Android TV.
Android auto
5) Click next and enter the activity name, layout name, title, and menu resource name, you can change it or leave it and just press the finish button.
6) Click Finish. Now you can write your code here.
2) Now one new dialog box is open and asks for the project details Application name, Company Domain, and project location.
Application name
No need to enter a unique name compare with the play store, this name is displayed under the application icon.
Company Domain
It must be a unique comparison between the google play store (If you created the name and the same name already in playstore it won't show any error message, but in publishing time it will show an error).
Project Location
It will automatically take the previous project path, if you want the same path no need to change it, or you can change it.
In this window select the minimum target SDK, wear, TV, and android auto.
Minimum SDK
Here you can select the minimum required android os version.
Wear
This means is this application support a wearable android device or not (If yes then check or uncheck it).
It will indicate this application is applicable for Android TV.
Android auto
4) Click next in this dialog box, you can find some templates, if you want any templates from there you can select otherwise select "Blank Activity".
6) Click Finish. Now you can write your code here.
Post a Comment for "How to create new project in android studio?"