Gradle pop up on new project
已回答
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
请先登录再写评论。
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!