How to use offline gradle file for new project? I'...
# gradle
k
How to use offline gradle file for new project? I've already set it in gradle setting but still re-download gradle Slack Conversation
v
Your question is not clear and your screenshots are not available, probably because you deleted the original question
Ah, the screenshots just didn't show on mobile, on Desktop they show.
Actually the setting that you did there is very dangerous and not what you expect. It is not Gradle home. It is Gradle user home. So the directory that usually lies in
~/.gradle
. It is very unlikely that you want this inside a Gradle installation.
After you added Gradle project you can select which Gradle version to use to execute it in exactly that settings screen. But it is also usually a pretty bad idea to use a different version of Gradle than is defined in the Gradle wrapper. The author of the build designed the build to work correctly with Gradle 7.2 and as you want to run it with 7.3.3 the build could behave strange. That's one of the major reason the Gradle wrapper exists, to not have such version problems.