I KNOW THIS QUESTION IS VERY SIMILAR TO THIS, with time difference.
I would like to create a regular Android project skeleton (create directories for all the sources, resources, flavors dimensions, etc; create manifest and xml stuff).
I have setup linux with latest Android Command line tools only, java, gradle, adb and a text editor; and I know how to build an app and test an app on a device.
I don't want to re-invent the wheel, but I do not want the IDE.
So far I found:
android create project
is now deprecated.- You can use SDK versions previous to 25.0.3 to use
android create project
. (not a good solution) - You can generate the project on AS and copy it, proceduraly. (not a good solution)
So...
Is there any way to generate the mentioned project skeleton from command line with latest standards?
EDIT: It doesn't have to be an official google thing.