How to automate Android project skeleton creation? (no Android Studio)
问题 I would like to create a regular Android project skeleton (e.g. create directories for all the sources, resources, flavors dimensions, etc; create manifest and xml stubs) I know you can do this in a shell script, but I want to use Gradle, if it is possible at all. Is that functionality built into Gradle, or do I have to write my own extension/plugin. How does Studio create the project skeleton in actuality? I don't want to re-invent the wheel, but I do not want the IDE. 回答1: Is that