Actually there is a project structure
- AndroidManifest.xml
- assets
- ibs
- res
- src
- any files
When importing a project into the same Android Studio, she herself adds gradle and rework the structure into the form:
- app
- libs
- src
- main
- assets
- java
- res
- AndriodManifest.xml
- build.gradle
- main
- any files
How to use gradle or any other way to change the structure of the project without using the same import to the studio?
Is there any console command for gradle, so that if you add it to the project via the terminal, would you be able to rebuild the project? Or something that would do it.
com.android.tools.build:gradleplugin does, dig in this direction. - Eugene Krivenja