The Ultimate Dagger-Hilt Guide (Dependency Injection) - Android Studio Tutorial

  Рет қаралды 145,148

Philipp Lackner

Philipp Lackner

Күн бұрын

Пікірлер: 252
@leonardosibela
@leonardosibela 2 жыл бұрын
Man, first of all, you are THE BEST Android KZbin channel in the whole website. Second, you are just awesome!! You are a great teacher and a very charismatic human being. Last, but not least, I don't know how you don't get tired of making so many great videos. You ARE the best!! Thanks for teaching me so much. It's being a pleasure to have your videos as part of my life.
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Thank you 🥺🙏
@John-qt6qk
@John-qt6qk 2 жыл бұрын
This coment is so sentimental
@emremuhammetengin2085
@emremuhammetengin2085 2 жыл бұрын
The best teacher i have ever seen
@manuelsilveriof
@manuelsilveriof Жыл бұрын
This is by far the best explanation of Dagger Hilt I have found online. Not even the official Android Developers' KZbin channels explain it like you do. Thank you so much!!
@alexeysimchenko7494
@alexeysimchenko7494 2 жыл бұрын
I use dagger/hilt every day but usually as copy/paste so today I decided to finally get known how it works. Your explanation is the best of several that I saw today!
@priyanshugupta7904
@priyanshugupta7904 2 жыл бұрын
I am a student I can't buy u a coffee but I can like and share your video with my friends. Amazing Teaching :)
@shashanknanda7299
@shashanknanda7299 7 ай бұрын
This is the most easy to understand explaination that I've ever found on dagger-hilt till now, you explained each topic very consicely yet clearly
@henrygalvan9333
@henrygalvan9333 2 жыл бұрын
broo thank you, "you never actually call these functions, dagger hilt does", cleared up so much for me!
@mithunlzmv806
@mithunlzmv806 Ай бұрын
This is the recommended video for learning Dagger Hilt for Android. You don't need to watch anything else. Thanks, Lackner.
@Shots_by_ranjith
@Shots_by_ranjith Жыл бұрын
My man teaches me more than what I learnt from a 4 yearbachelor's degree.
@technics6215
@technics6215 Жыл бұрын
This is about a tool / library. Tools and libraries will change over time. Most of the things you learn in school won't change. If you are in engineering school you are not there to learn how to make a hole in metal with one particular kind of machine. You don't need a professor fot that. You are there to know why, when and where you have to make that hole.
@SumriseHD
@SumriseHD Жыл бұрын
​@@technics6215but that opinion is way too nuanced!
@mithilmehta1501
@mithilmehta1501 2 жыл бұрын
Hey Philipp, I am from India and I really love your videos and it helps a lot. Thanks! God bless you and keep up the good work. Your explanation are so simple that even a fresher can understand. 😊
@RaajKanchan
@RaajKanchan 2 жыл бұрын
Hey Mithil, I am new to Dagger Hilt. Can you help me, I want to pass String value from Activity to an AppModule. How can I do that?
@mithilmehta1501
@mithilmehta1501 2 жыл бұрын
@@RaajKanchan why do you want to pass string to app module from activity? Do you want to pass it to next activity?
@RaajKanchan
@RaajKanchan 2 жыл бұрын
​@@mithilmehta1501 No, no its just an example. Let me give you the example. ----------------------------------------------------- class Customer @Inject constructor(@CName val customerName: String, private val age: Int) { fun printCustomerDetails() { println("$TAG :: $customerName is $age old") } } @Module @InstallIn(SingletonComponent::class) object AppModule { @Provides @Singleton @CName fun provideCustomerName() = "Mithil Mehta" @Provides @Singleton fun provideCustomerAge() = 24 } @Qualifier @Retention(AnnotationRetention.BINARY) annotation class CName @Inject lateinit var customer: Customer customer.printCustomerDetails() ----------------------------------------- Here in the module I am providing CustomerName and CustomerAge statically. Not dynamically. I just want to learn how can I do that.
@mithilmehta1501
@mithilmehta1501 2 жыл бұрын
@@RaajKanchan bro, you are getting it wrong. This is not something to be passed usong dagger. This data which should be passed either from activity to another Activity or else load from network for that particular screen. Dagger should be used to inject those dependencies which screen requires but doesn't care how it is created. So, as per my understanding your usecase is incorrect.
@nrg4285
@nrg4285 6 ай бұрын
I normally blast through these tutorials but this one took a solid 1-2 hours because of coding and note-taking at the same time and there was so much good content. For example it takes 7 individual scrolls to get through the notes top to bottom, that's a lot more than usual
@khalidrinaldy3671
@khalidrinaldy3671 Жыл бұрын
you are the best Kotlin Android Developer's teacher, or maybe the best programming teacher i've ever watched
@osisuper98
@osisuper98 2 жыл бұрын
I am lost for words already. Man is always hitting the nail on the end. Much love ❤️.
@daniellubenov827
@daniellubenov827 2 жыл бұрын
Those videos are with the latest and the best practices. Really the best android tutorials out there.
@PhilippLackner
@PhilippLackner 2 жыл бұрын
🙏🙏🙏
@tonyalbanese6446
@tonyalbanese6446 2 жыл бұрын
I still can't believe how terrific these videos are. You explanations are superb. Thank you so much for taking the time to make this content.
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Thank you, happy to help!
@attilabacsa2808
@attilabacsa2808 2 жыл бұрын
Thank you, excellent content as always. When I decided to switch carrier and become an Android dev, your channel was one of the main sources to learn the basics. Keep up the good work! 💯
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Awesome, thank you and keep it up! 🙏
@gastonsaillen2226
@gastonsaillen2226 Жыл бұрын
I think we should use @InstallIn(ViewModelComponent::class.java) since the repository lives inside a ViewModel, in the meantime that we inject the repository inside the ViewModel, hilt will then delete this repository instance when the ViewModel is cleared (onCleared is called, ViewModel is destroyed because its activity/fragment does not need it anymore). If we do it with the SingletonComponent it will be tied up with the Application class you created, and hence, the repository instance will outlive the ViewModel. Another way of not using @Named could be to use @Qualifiers which can be more verbose on for example creating two different okHttp clients Great video Philipp, it contains a lot of excellent suggestions !
@VinothKumar-oo8ye
@VinothKumar-oo8ye Жыл бұрын
philip lackner, i studied your and workout your Weather app (clean code architecture) course, and i don't understand most of things, then after watching this dependency injection i understand all the doubts i have on the weather app course. super tutorial ;)
@LinaSarkar7307
@LinaSarkar7307 2 жыл бұрын
its priceless. the slickness and the passion of the devs. priceless. what is cheaper and better than soft? Piracy is NOT the answer if you
@GoceAnastasovski
@GoceAnastasovski Жыл бұрын
Great video! I finally understood Hilt! I would create a sequel to this video where you focus on unit tests, you write the tests without hilt first and then with Hilt
@PhilippLackner
@PhilippLackner Жыл бұрын
I do have a hilt testing video on my channel :)
@sumonchatterjee5337
@sumonchatterjee5337 Ай бұрын
Hey, I have recently started watching your channel and I am really impressed by the way of teaching. The explanations are the best. Thankyou for making this videos.
@muyassarabdullah1504
@muyassarabdullah1504 8 ай бұрын
I always go back to your tutorial because it is very simple and easy to understands from fundamentals point of view
@parulsinghal2k5
@parulsinghal2k5 6 ай бұрын
you slayyyed it!!! 30 minutes video covered almost everything for a person who knew only how to use dagger2 👏
@harishodzic3274
@harishodzic3274 Жыл бұрын
I always try to give credit where credit is deserved. And you my man are pure gold. I just stumbled on your content and I'm happy for that. Fast, to the point, full of valuable information. Keep on going this is great. I will subscribe, upvote, like. Wish you a good luck in the upcoming days!
@mandarpawar1423
@mandarpawar1423 2 жыл бұрын
Man, you don't know how grateful I am right now! THANK YOU SO MUCH!!!
@fsfaysalcse
@fsfaysalcse 2 жыл бұрын
Sometimes I thought you might be a superhero 😜 And you Come from a different universe. Best of luck, brother. I am your biggest fan from Coroutines video playlist ❤
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Thanks man🙏😅❤️
@arma6363
@arma6363 Жыл бұрын
Hilt would be super easy by your teaching, Thanks alot dear philip
@kamertonaudiophileplayer847
@kamertonaudiophileplayer847 2 жыл бұрын
A very frequently my class functionality requires the context. But it is available only in an activity. So I was really frustrated until watched you video. Now, I just tell - inject! That's it, simple and elegant.
@jagat.jeeban
@jagat.jeeban 2 жыл бұрын
You're a great teacher. Hats off to you man!! 🙌 Keep making such types of tutorials on android topics.
@rajm2671
@rajm2671 Жыл бұрын
Finallyyy, I learned Dagger-Hilt. Good explanation. Thanks, Philipp
@moforemmanuel158
@moforemmanuel158 2 жыл бұрын
your tutorials are the best because you take time to explain the subtle concepts behind the code which is rare from other tutorials i just had to watch this once the get the whole scope of what DI with Hilt is and it implementations
@mohinithakkar2172
@mohinithakkar2172 Жыл бұрын
Thank you so much for this! It has covered almost all the features of Dagger Hilt.
@fredericoamigo
@fredericoamigo 6 ай бұрын
I’m so grateful for all of your brilliant videos on Android development in kotlin and jetpack compose. Thank you so much for this! If I might suggest a future video: how to use foreground location for in a MVVP app using datasource-repository-viewmodel architecture.
@samasama3482
@samasama3482 8 ай бұрын
The perfect explanation of Dagger Hilt I have ever seen! thank you
@guitarcat01
@guitarcat01 2 жыл бұрын
You always teach in a very patient and simple way and all i can do i really thank you SO MUCH for what you're doing! I'd say more than 60% of what i know about android comes from you. This is by far the greatest android development channel on KZbin =) PS: After this video i already implemented Dagger in two of my projects
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Thanks a lot mate!
@pablocruz1302
@pablocruz1302 2 жыл бұрын
You are the Best Android development content out there. Thanks for your great content
@PhilippLackner
@PhilippLackner 2 жыл бұрын
🙏❤️
@mymobile550
@mymobile550 2 жыл бұрын
Became so curious after watching this tutorial . Just after I implemented this in one of my project including database module.
@7xFuryPlayz
@7xFuryPlayz Жыл бұрын
now i understand how to use Hilt properly , within my project but i have still some doubts within my mind about clean architecture implementation, hope so i will figure them too . but thanks for this complete video . 🤩☺
@AliAhmad-dev
@AliAhmad-dev 4 ай бұрын
Thanks a lot, I now can understand DI really well.
@nantiyachomtee2998
@nantiyachomtee2998 2 жыл бұрын
The quality of your content is incredibly high, awesome stuff!! Thanks a lot!!
@maryfrancegonzales9570
@maryfrancegonzales9570 2 жыл бұрын
The KING is BACK! Thanks bro!
@winsonmac
@winsonmac 2 жыл бұрын
Great sharing! I learned new things from you like @Binds and Lazy Injection
@codingwithtd5196
@codingwithtd5196 10 ай бұрын
Thanks man. This is one of the best Dagger Hilt tutorials I found.
@AnjuMohanan-t9y
@AnjuMohanan-t9y 10 ай бұрын
Best Video in short time. Good content.
@ashishgautam2842
@ashishgautam2842 2 жыл бұрын
bro as i'm seeing my growth, i have seen growth in you too..actually / definitely your ahead me but somewhere i feelled sync between us.
@abacaabaca8131
@abacaabaca8131 4 ай бұрын
The purpose of Dependency Injection is that you can share the same reference to an object even when the objects that wants to share it have different lifetime. For example, if I have 3 classes namely `Time`, `A`, and `B`. let say Time class is used for benchmarking or profiling your program. It can be used to detect how much time each functions/methods are executed at runtime. This means you need to create one single instance of Time class so that A and B can refer to this object. Because, if you create two different objects for A and B , maybe the timing is not continuous and so give wrong result. When you have dependency Injection, you have other class that kind of manage the creation of object and it's lifetime. Meaning, if A and B lives in different lifetime, they still be able to share the same reference to Time instance object. For example, if A is created first, then the dependency Injection will also create Time object. After A is deallocated, the dependency Injection will save the state of this Time object that have some state profiling instance of A. Then Time will get deallocated. Then when B is created, the dependency Injection will create the same object of Time with the same last state for A. Meaning as if Time object is reborn again but with the same state when it was when A is about to die.
@omkarkshirsagar8812
@omkarkshirsagar8812 5 ай бұрын
first time i saw video i dont get it , after seeing video second time now its crystal clear
@masmmaw
@masmmaw 2 жыл бұрын
love it 💖 still provide complete information and of course free. Thank you.
@PhilippLackner
@PhilippLackner 2 жыл бұрын
You're so welcome!
@musfickjamil2831
@musfickjamil2831 2 жыл бұрын
Philipp you look so fresh in new setup..setup looks awesome. we want setup tour
@senk0n
@senk0n 2 жыл бұрын
Oh my, thanks to YOU, it's such an easy to understand and implement simple clean arch project for my CV now
@manishpingale6558
@manishpingale6558 Жыл бұрын
I understood hilt like never before 🤯
@tasmanlg
@tasmanlg Жыл бұрын
I have such praise for your content. Thank you so much, truly.
@TerminalKid
@TerminalKid 11 ай бұрын
dude you're Epic, learning a 'lot of good practices from you which saves me time. 👍👍
@genctasbasi
@genctasbasi Жыл бұрын
This guy is a gem.
@azamovdev
@azamovdev Жыл бұрын
this cool . I had the same problem and solved it with your content. good luck with your work.
@dawidtyburek
@dawidtyburek 2 жыл бұрын
Love it! Great that you are using Binds for interfaces/abstracts, most guides I have seen is just showing Provides but imho Binds is as much important😊
@PhilippLackner
@PhilippLackner 2 жыл бұрын
💪💪
@remmievail2003
@remmievail2003 2 жыл бұрын
Philipp makes the comment that Bind generates less code, is that the only difference? @Binds and @Provides seem to be basically the same thing, just slightly different.
@ChrisAthanas
@ChrisAthanas Жыл бұрын
@@remmievail2003 one is concrete implementation of a particular type, one is for a mapping an interface to a particular implementation of a type
@behnawm
@behnawm 2 жыл бұрын
Thanks for the great video! Please consider explaining different scopes and lifecycles for the dependencies too.
@luckydevil1601
@luckydevil1601 Жыл бұрын
thank you so much! finally I understood the magic behind this!
@punyan775
@punyan775 2 ай бұрын
Good video, some concepts were easy to grasp but others relied on pre-requisite knowledge of the android architecture. You should've skimmed over some of the core concepts
@leonkennedy1267
@leonkennedy1267 5 ай бұрын
Thanks for your videos! It's very helpful! More power to you!
@BilalBerek-tl3tq
@BilalBerek-tl3tq 7 ай бұрын
perfectly explained dude.
@RockRider2k
@RockRider2k Жыл бұрын
Imho the overhead of marking every here and there with annotations worth it only in huge projects. So the benefits of using dagger are very subjective
@kvasir25
@kvasir25 Жыл бұрын
Also this makes all the configuration being spread across multiple files which imho makes it more complex than it's needs to be
@toniwincent6653
@toniwincent6653 2 жыл бұрын
You are the best at explaining this so that I understand! Thank you so much! When I get my first job as a developer I will buy you coffey! 🙂
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Thank you, happy to help!!
@chrisperey561
@chrisperey561 2 жыл бұрын
you are literally the best
@Hoseinsadonasl-jo4dm
@Hoseinsadonasl-jo4dm 4 ай бұрын
Really awsome Philipp
@andinaevitha6950
@andinaevitha6950 2 жыл бұрын
ITS REALLY WORKED LOL THANK YOU DUDE
@Sarthakz99
@Sarthakz99 2 жыл бұрын
I was looking for the same Auth token use case!! Thanks a lot!!
@Langi667
@Langi667 Жыл бұрын
Your tutorials are extremely helpful, thank you so much!
@avinashreddy9565
@avinashreddy9565 Жыл бұрын
Great Explanation!!! Very Easy to understand...
@Alchemist10241
@Alchemist10241 2 жыл бұрын
This video was the exact info that i have needed.
@realurah
@realurah Жыл бұрын
damn... you are such a good teacher man
@PhilippLackner
@PhilippLackner Жыл бұрын
Thank you!🙏🙏
@kitcat2449
@kitcat2449 Жыл бұрын
Very clear, thanks!
@Dineshkumar-f1f6o
@Dineshkumar-f1f6o 8 ай бұрын
Thank you so much for your excellent explanation dude 😀😃😄😁
@giahayes8251
@giahayes8251 9 күн бұрын
Great content! Very helpful!
@kamrulhuqmaroof113
@kamrulhuqmaroof113 2 жыл бұрын
Wow man it really works!
@pqsk
@pqsk Жыл бұрын
Great video! Thanks so much for the explanation of this library.
@PamontBahktar
@PamontBahktar Жыл бұрын
You're awesome Philipp, thanks so much for this it's really helpful.
@lioliknumberone1428
@lioliknumberone1428 Жыл бұрын
very interesting and clear tutorial! Thank you very much!
@rahulrvp
@rahulrvp 8 ай бұрын
Thanks a lot for making this video. Super helpful!
@xandrviking1113
@xandrviking1113 Жыл бұрын
Thanks Philipp 👏🤝
@bdjobstv8575
@bdjobstv8575 Жыл бұрын
thanks a lot!!! so nice reverb
@whogashaga666
@whogashaga666 2 жыл бұрын
Thanks for sharing this video.
@RahulKumar-un6ur
@RahulKumar-un6ur 2 жыл бұрын
Wow....what an amazing,clear and short to the point explanation. Out of curiosity, I would like to ask a question please. Can we keep the AppModule a normal class instead of object? Is it recommend to make a module (of course, not a binding module) object instead of a normal class? I tested and both works. Tons of thanks for your time and this amazing explanation.
@7xFuryPlayz
@7xFuryPlayz Жыл бұрын
but for those who are reaching this video late . the latest version of hilt is 2.46.1 and you donot need below dependency any more with the latest hilt implementation ... implementation "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha03" and everything else is working fine with hilt
@MrVipulLal
@MrVipulLal 11 ай бұрын
Your videos are all amazing 🙏👍👍👌💯
@bitwisedevs469
@bitwisedevs469 2 жыл бұрын
Was actually expecting more of Koin now but this is still good. Thanks
@lukapolic9446
@lukapolic9446 2 жыл бұрын
Thank you for this video. Very clear, informative, and organized. How much time have you put in to make something like this ?
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Thanks! If the topic is already clear to me and doesn't require research like here, a video like this one takes 4-5h
@amirnaderlo3045
@amirnaderlo3045 Жыл бұрын
it was so helpful,Thanks
@kamronqobilov1954
@kamronqobilov1954 2 жыл бұрын
You are very smart man
@theevan3867
@theevan3867 2 жыл бұрын
Thanks Phillip! if you can, can you make a youtube short of app examples that would be considered impressive to get an entry level position? Please. Thanks!!!
@tarekrefaei90
@tarekrefaei90 2 жыл бұрын
Totally Awesome ... Thanks alot ..
@VeronikaDoma-f5y
@VeronikaDoma-f5y Жыл бұрын
luv
@muhammadsarimmehdi
@muhammadsarimmehdi Жыл бұрын
can you create a dagger-hilt tutorial with custom scopes? That will be very useful to understand, especially for apps with user logins
@SapphireStudioart
@SapphireStudioart Жыл бұрын
Great video! Well explained, thank you
@chitye-aung
@chitye-aung 2 жыл бұрын
Awesome! Thank You Philip
@PhilippLackner
@PhilippLackner 2 жыл бұрын
Welcome!
@VV-bo7rx
@VV-bo7rx 10 ай бұрын
Thank You very much!
@ubersticks
@ubersticks 2 жыл бұрын
Great job Phillip! When should we use "vm = hiltViewModel()" vs "vm:MyViewModel" by viewModels()" ??
@abdomostafa4512
@abdomostafa4512 Жыл бұрын
You're my legend
@santri.awon1
@santri.awon1 2 жыл бұрын
great tutorial as always
@abhishekpathak7698
@abhishekpathak7698 Жыл бұрын
Indeed it was helpful. But i got confused in appcontainer and module of the app components that are created within the appcontainer
@slotgacor8165
@slotgacor8165 2 жыл бұрын
All the best,
Full Guide to Manual Dependency Injection + Removing Dagger
14:50
Philipp Lackner
Рет қаралды 38 М.
Running With Bigger And Bigger Lunchlys
00:18
MrBeast
Рет қаралды 70 МЛН
WORLD BEST MAGIC SECRETS
00:50
MasomkaMagic
Рет қаралды 51 МЛН
Cute
00:16
Oyuncak Avı
Рет қаралды 12 МЛН
Основы DI и Dagger, как работает, настройка в проекте
17:31
Android Broadcast. Все об Андроид разработке
Рет қаралды 67 М.
Hilt and dependency injection - MAD Skills
13:06
Android Developers
Рет қаралды 47 М.
MVVM vs. MVI - Understand the Difference Once and for All
18:40
Philipp Lackner
Рет қаралды 43 М.
DAGGER 2 - A New Type of dependency injection
40:16
Google for Developers
Рет қаралды 235 М.
Все про Dagger Hilt в Android Studio + Kotlin
52:11
Neco Ru
Рет қаралды 12 М.
I Rewrote This Entire Main File // Code Review
16:08
The Cherno
Рет қаралды 159 М.
5 Design Patterns That Are ACTUALLY Used By Developers
9:27
Alex Hyett
Рет қаралды 275 М.