Gradle pop up on new project
Answered
Hey all,
Im new to Gradle, when i open the build.gradle file i get ""You can configure Gradle wrapper to use distribution with sources. It will provide IDE with Gradle API/DSL documentation""
I just wondered what does it do when i select "Ok, apply suggestion!"
Thanks
Jack
Please sign in to leave a comment.
It replaces binary only Gradle distribution (.zip) with the complete distribution (-all.zip) which contains sources and documentation so that you can get helpful hints in the IDE while editing the build file (Quick Documentation on Gradle API).
Ah great, cheers!