I have an Android Studio project that I imported in SVN. I didn't add some files like the build folder, local.properties, the .idea folder and .gradle folder, as suggested here. Then I checked out the project in another directory on my machine and imported it into Android Studio.
After the import, I tried to clean the project, but the option wasn't present in the GUI. I found it weird so I checked the list tasks with ./gradlew tasks
and the ouput was indeed quite short (help tasks not shown):
Build Setup tasks
init - Initializes a new Gradle build. [incubating]
wrapper - Generates Gradle wrapper files. [incubating]
In the original project, here are a lot of other tasks (Android, build, install, verficitation and other tasks). Has anyone a clue on what is going on here ? The weird thing is that I just did the same procedure with another project and didn't get any problem.
Thank you