Gradle Course for Beginners | Get Going with Gradle

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 พ.ย. 2024

ความคิดเห็น • 29

  • @TomGregoryTech
    @TomGregoryTech  ปีที่แล้ว +8

    Thanks for watching! Download the course notes with STEP-BY-STEP INSTRUCTIONS and QUIZ to deepen your knowledge tomgregory.com/ggwgnotes

    • @gerdsfargen6687
      @gerdsfargen6687 9 หลายเดือนก่อน +1

      Dude you are so much excellence in one person. Thank you so much!

  • @ManuelJordan317
    @ManuelJordan317 ปีที่แล้ว +7

    Thanks for your efforts, added to my watch list! .... there is always something to learn in Gradle ...

  • @kangsankim3753
    @kangsankim3753 4 หลายเดือนก่อน +2

    Thank you Tom. You saved my life.

  • @cristhianavargascuero5821
    @cristhianavargascuero5821 8 หลายเดือนก่อน +2

    Thanks for this video, feel that I've improved with this.

  • @daorihunta
    @daorihunta 11 หลายเดือนก่อน +1

    Thank you so much Tom, learned a lot. keep up the hard effort you put in creating such a craft!

  • @AvinashKumar-mh6si
    @AvinashKumar-mh6si 8 หลายเดือนก่อน

    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.

  • @turkerozturk6889
    @turkerozturk6889 11 หลายเดือนก่อน +1

    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.

  • @MrMikomi
    @MrMikomi 3 หลายเดือนก่อน

    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.

  • @SunnyDays-888
    @SunnyDays-888 ปีที่แล้ว +2

    Good job! Thank you!

  • @snakehound7678
    @snakehound7678 ปีที่แล้ว

    thank you for the helpful gradle tutorial. it gives me a perfect overview😊

  • @AnantaAkash.Podder
    @AnantaAkash.Podder 10 หลายเดือนก่อน

    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

  • @daorihunta
    @daorihunta 11 หลายเดือนก่อน

    You are a champ Tom! Learned a lot

  • @rishavkumar9233
    @rishavkumar9233 4 หลายเดือนก่อน

    Thank you, it was very helpful!

  • @adewaleadisa4346
    @adewaleadisa4346 8 หลายเดือนก่อน +1

    well done. Thanks

  • @truedwell
    @truedwell 6 วันที่ผ่านมา

    Finally I will understand it

  • @ethanhunt937
    @ethanhunt937 3 หลายเดือนก่อน +1

    Phenomenal

  • @AnantaAkash.Podder
    @AnantaAkash.Podder 11 หลายเดือนก่อน

    Thank you very much Gregory...❤️

  • @ОлегПаламарчук-р5к
    @ОлегПаламарчук-р5к 8 หลายเดือนก่อน

    Thanks! Great work!

  • @MrMikomi
    @MrMikomi 3 หลายเดือนก่อน

    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)

  • @yesyas5972
    @yesyas5972 7 หลายเดือนก่อน +1

    Nice tutorial!

  • @danpio81
    @danpio81 9 หลายเดือนก่อน +1

    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.

    • @TomGregoryTech
      @TomGregoryTech  9 หลายเดือนก่อน

      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.

  • @ytrishirajxtrim
    @ytrishirajxtrim 9 หลายเดือนก่อน

    thanks

  • @shubhamshejaval8526
    @shubhamshejaval8526 6 หลายเดือนก่อน

    Thanks

  • @c.stewart000
    @c.stewart000 3 หลายเดือนก่อน

    Great vid thanks

  • @abcz___hello
    @abcz___hello 10 หลายเดือนก่อน

    👏👏👏

  • @MrMikomi
    @MrMikomi 3 หลายเดือนก่อน

    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.

  • @ShubhamNancheOfficial
    @ShubhamNancheOfficial 3 หลายเดือนก่อน +1

    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.