First of all, I'm aware of this question; however I cannot follow the answer because there are no directories mentioned there.
When creating new Android Studio project I want the following to be created automatically:
- Specific packages and directories;
- Gradle dependencies
- Several classes (might be imported from somewhere else)
Is it possible to create an Android Studio template for these tasks?
Check out this folder under your android SDK folder:
There are three predefined templates as seen below, which we generally use.
Each template folder has different
ftlfiles which are templates for each of the existing projects:You can create a new template folder and design the
ftlfiles as you want them to. And also define project structures.Just open one of these and you'll get an idea of how the default templates are there. Extend those or create your own from scratch as you want.
With the above said, your questions can be answered as follows:
For creating packages create a folder structure in the
rootfolder to match your package name.For gradle dependencies add them to your
*.gradle.ftlfiles, as required.For copying/importing exiting classes/files look at
recipe.xml.ftlto get an idea of how to copy.I searched again and found another location where these templates are stored i.e. directly under the Android Studio installation folder and not the Android SDK folder.
Verified for
Android Studio Version 1.5&Android Studio Version 2.0 Beta:The file types and organization of them is same as mentioned earlier.