The problem is that it takes so many minutes Android Studio
to be ready, because automatically (I don't know how) the construction process (build) of the project starts at the same time that it starts executing as well Android Studio
.
Should I set parameters from a .gradle file, to avoid all this long waiting?
In this case it seems to me that you should Enable offline mode for Gradle .
Go to
File
>Settings
>Build, Execution, Deployment, Gradle
and activate the option:Otherwise, dependencies will always be downloaded and will cause your project to take longer to build.
It is important to know that the dependencies must be downloaded a first time and later you can activate this mode.