Thanks for watching! Download the course notes with STEP-BY-STEP INSTRUCTIONS and QUIZ to deepen your knowledge tomgregory.com/ggwgnotes
@gerdsfargen668710 ай бұрын
Dude you are so much excellence in one person. Thank you so much!
@AvinashKumar-mh6si9 ай бұрын
25:20 it means, even we just add some plugin, the tasks defined by plugin will execute. And if we customise those tasks, so customisation will also execute. And plugins are important, because, we mention just some fields inputs, what is happening behind is worked upon by plugins and the gradle tool only.
@ManuelJordan317 Жыл бұрын
Thanks for your efforts, added to my watch list! .... there is always something to learn in Gradle ...
@MrMikomi4 ай бұрын
17:20 As of 19/08/2024 the list of options at the command line are now Select type of build to generate: 1: Application 2: Library 3: Gradle plugin 4: Basic (build structure only)
@kangsankim37535 ай бұрын
Thank you Tom. You saved my life.
@cristhianavargascuero58219 ай бұрын
Thanks for this video, feel that I've improved with this.
@SunnyDays-888 Жыл бұрын
Good job! Thank you!
@adewaleadisa43469 ай бұрын
well done. Thanks
@ОлегПаламарчук-р5к9 ай бұрын
Thanks! Great work!
@daorihunta Жыл бұрын
Thank you so much Tom, learned a lot. keep up the hard effort you put in creating such a craft!
@MrMikomi4 ай бұрын
41:45 For me "testImplementation" was in red in intellij (error message "Unresolved reference: testImplementation"). Clicking "Load Gradle Changes" (CTRL SHIFT O) seems to have resolved it.
@MrMikomi4 ай бұрын
Following along with this - many thanks. Suggest using chocolatey to install gradle as it makes it easy to upgrade in future - just "choco install gradle" is needed in an elevated command prompt.
@Anloder416 күн бұрын
Well, at this moment I have many projects with different gradle versions. What do you recommend for solving this in windows or linux?
@rishavkumar92335 ай бұрын
Thank you, it was very helpful!
@yesyas59728 ай бұрын
Nice tutorial!
@daorihunta Жыл бұрын
You are a champ Tom! Learned a lot
@ethanhunt9374 ай бұрын
Phenomenal
@turkerozturk6889 Жыл бұрын
Thank you for your effort to teach us. Now I understand the environment more. The explanation on the kts file about lambda expressions is very informative. I need to watch 2-3 times againin time to absorb the information.
@AnantaAkash.Podder11 ай бұрын
Sir, your Explanation is Truly amazing... I have commented before... But it is Never enough to appreciate your your Teaching... Thank you and have a Good Day... Love from Bangladesh
@derfiemcgoo96737 күн бұрын
Excellentamente! Hola!
@truedwellАй бұрын
Finally I will understand it
@AnantaAkash.Podder Жыл бұрын
Thank you very much Gregory...❤️
@snakehound7678 Жыл бұрын
thank you for the helpful gradle tutorial. it gives me a perfect overview😊
@c.stewart0003 ай бұрын
Great vid thanks
@danpio8110 ай бұрын
I liked the course content a lot, nice and clear. What i did not like though is that you arę tricked to subscribe to a mailing list if you'd like to get the code used in the tutorial.
@TomGregoryTech10 ай бұрын
Hi Dan. Thanks for raising this. It should have been clearer that I also send out Gradle tips and insights by email when you request the PDF course notes. The form has now been updated to accurately reflect this. Glad you enjoyed the course.
@ytrishirajxtrim10 ай бұрын
thanks
@shubhamshejaval85267 ай бұрын
Thanks
@abcz___hello11 ай бұрын
👏👏👏
@ShubhamNancheOfficial4 ай бұрын
Error: LinkageError occurred while loading main class com.ssk.languageapp.SayHello java.lang.UnsupportedClassVersionError: com/ssk/languageapp/SayHello has been compiled by a more recent version of the Java Runtime (class file version 63.0), this version of the Java Runtime only recognizes class file versions up to 61.0 If you are getting this error then: put this code in your build.gradle.kts file below the plugins java { toolchain { languageVersion.set(JavaLanguageVersion.of(17)) //replace the java version to the one that you used for compiling using gradlew compileJava } } This will solve the issue.