Man, first of all, you are THE BEST Android RUclips 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.
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!
This is by far the best explanation of Dagger Hilt I have found online. Not even the official Android Developers' RUclips channels explain it like you do. Thank you so much!!
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
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.
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! 💯
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 ;)
This is seriously the best ever video that I watched for learning this concept..I am newbie and learned with comparing the code developed by my company and seriously you are the best🤩
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. 😊
@@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.
@@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.
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
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!
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.
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
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 RUclips =) PS: After this video i already implemented Dagger in two of my projects
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 ❤
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 . 🤩☺
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 !
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.
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.
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.
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
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!!!
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
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😊
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.
Great video man!!! I have just one question though. Where is all the Api parsing done? I thought it was in the view model. An object of the ViewModel is created in MainActivity. Then the UI is assigned its values in the MainActivity, correct?
Man, first of all, you are THE BEST Android RUclips 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.
Thank you 🥺🙏
This coment is so sentimental
The best teacher i have ever seen
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!
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
broo thank you, "you never actually call these functions, dagger hilt does", cleared up so much for me!
I am a student I can't buy u a coffee but I can like and share your video with my friends.
Amazing Teaching :)
This is by far the best explanation of Dagger Hilt I have found online. Not even the official Android Developers' RUclips channels explain it like you do. Thank you so much!!
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
This is the recommended video for learning Dagger Hilt for Android. You don't need to watch anything else. Thanks, Lackner.
I am lost for words already. Man is always hitting the nail on the end. Much love ❤️.
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
Those videos are with the latest and the best practices. Really the best android tutorials out there.
🙏🙏🙏
you are the best Kotlin Android Developer's teacher, or maybe the best programming teacher i've ever watched
I always go back to your tutorial because it is very simple and easy to understands from fundamentals point of view
My man teaches me more than what I learnt from a 4 yearbachelor's degree.
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.
@@technics6215but that opinion is way too nuanced!
Man, you don't know how grateful I am right now! THANK YOU SO MUCH!!!
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! 💯
Awesome, thank you and keep it up! 🙏
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 ;)
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.
Thank you, happy to help!
you slayyyed it!!! 30 minutes video covered almost everything for a person who knew only how to use dagger2 👏
Thank you so much for this! It has covered almost all the features of Dagger Hilt.
This is seriously the best ever video that I watched for learning this concept..I am newbie and learned with comparing the code developed by my company and seriously you are the best🤩
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. 😊
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?
@@RaajKanchan why do you want to pass string to app module from activity? Do you want to pass it to next activity?
@@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.
@@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.
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
I do have a hilt testing video on my channel :)
You're a great teacher. Hats off to you man!! 🙌 Keep making such types of tutorials on android topics.
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!
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.
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
Became so curious after watching this tutorial . Just after I implemented this in
one of my project including database module.
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 RUclips =)
PS: After this video i already implemented Dagger in two of my projects
Thanks a lot mate!
The perfect explanation of Dagger Hilt I have ever seen! thank you
Finallyyy, I learned Dagger-Hilt. Good explanation. Thanks, Philipp
The quality of your content is incredibly high, awesome stuff!! Thanks a lot!!
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 ❤
Thanks man🙏😅❤️
You are the Best Android development content out there. Thanks for your great content
🙏❤️
The KING is BACK! Thanks bro!
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 . 🤩☺
Your videos are amazing especially for some like me that live in country with short resources.
Hilt would be super easy by your teaching, Thanks alot dear philip
Oh my, thanks to YOU, it's such an easy to understand and implement simple clean arch project for my CV now
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 !
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.
I have such praise for your content. Thank you so much, truly.
Thanks man. This is one of the best Dagger Hilt tutorials I found.
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.
I understood hilt like never before 🤯
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.
Thanks a lot for clearing out lot of questions I had on dagger hilt. Cheers...
Philipp you look so fresh in new setup..setup looks awesome. we want setup tour
love it 💖 still provide complete information and of course free. Thank you.
You're so welcome!
This guy is a gem.
this cool . I had the same problem and solved it with your content. good luck with your work.
dude you're Epic, learning a 'lot of good practices from you which saves me time. 👍👍
Great sharing! I learned new things from you like @Binds and Lazy Injection
Thanks a lot, I now can understand DI really well.
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! 🙂
Thank you, happy to help!!
I was looking for the same Auth token use case!! Thanks a lot!!
first time i saw video i dont get it , after seeing video second time now its crystal clear
This video was the exact info that i have needed.
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.
Your tutorials are extremely helpful, thank you so much!
Thanks for the great video! Please consider explaining different scopes and lifecycles for the dependencies too.
Great video! Thanks so much for the explanation of this library.
Best Video in short time. Good content.
You're awesome Philipp, thanks so much for this it's really helpful.
very interesting and clear tutorial! Thank you very much!
Great Explanation!!! Very Easy to understand...
Thanks for your videos! It's very helpful! More power to you!
thank you so much! finally I understood the magic behind this!
Thanks a lot for making this video. Super helpful!
damn... you are such a good teacher man
Thank you!🙏🙏
can you create a dagger-hilt tutorial with custom scopes? That will be very useful to understand, especially for apps with user logins
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
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
Also this makes all the configuration being spread across multiple files which imho makes it more complex than it's needs to be
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!!!
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
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😊
💪💪
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.
@@remmievail2003 one is concrete implementation of a particular type, one is for a mapping an interface to a particular implementation of a type
Thank you so much for your excellent explanation dude
😀😃😄😁
perfectly explained dude.
Please also include the use of entry point. How to use injected classes in attachBaseContext of application or activity ?
Great job Phillip! When should we use "vm = hiltViewModel()" vs "vm:MyViewModel" by viewModels()" ??
Great video! Well explained, thank you
ITS REALLY WORKED LOL THANK YOU DUDE
Awesome! Thank You Philip
Welcome!
you are literally the best
Tnx Again for nice video. If possible make a video about builder pattern/ factory pattern. And why we need to use them.
Wow man it really works!
Indeed it was helpful. But i got confused in appcontainer and module of the app components that are created within the appcontainer
Really awsome Philipp
Very clear, thanks!
Thank you for this video. Very clear, informative, and organized. How much time have you put in to make something like this ?
Thanks! If the topic is already clear to me and doesn't require research like here, a video like this one takes 4-5h
what we should learn first? MVVM or dependency injection?
MVVM
This was so helpful!! Thank you
Great content! Very helpful!
great tutorial as always
Thanks for sharing this video.
i got stuck cuz the "Lazy Impl", intead using Lazy, I use Lazy which cause error. finally fixed
thanks a lot!!! so nice reverb
lot of love for you bro
Great video man!!! I have just one question though. Where is all the Api parsing done? I thought it was in the view model. An object of the ViewModel is created in MainActivity. Then the UI is assigned its values in the MainActivity, correct?
Your videos are all amazing 🙏👍👍👌💯