Most Koin videos I've seen were like "here I show you a project with Dagger and migrate to Koin" or "You add this, this and this and voila, it works". But your video was exactly what a tutorial must be: explaining things step by step and made me understand it. Thank you!
I'm looking into Koin after just getting really frustrated with Dagger Hilt and wow this is much easier and more flexible than hilt is. Time to migrate to Koin!
When you say, "most people overcomplicated", it reminded me of the old dagger documentation which gives the thermosiphon example 😃 Nice video btw, thanks!
I only used Hilt before but definitely gonna try this. The idea of inject at runtime is very interesting! However Hilt is backed by Google though, this is not a fair fight 🙂
But viewmodel keyword in Koin acts as a factory? And if we want to share the VM in two fragments por example, can we use viewmodel injection like a singleton?
@@D3vCansado You will be surprised how many times I saw these "very simple test cases" not implemented and caused prod bugs. Especially after 2 years and 4 dev changes. This is why I prefer compile time over run time. I also need to say that Dagger series was kinda hard to use compared to Koin but I feel using Hilt almost easy as Koin.
@@D3vCansado There are always issues. This is why I don't want to introduce another possible problem. Pipelines, health checks, security checks fails time to time and they might be ignored to deliver prod on time. (They always say they will see at regression/sanity checks if there is a problem) On the one hand, there are tests that I need to trust, and on the other hand, the direct error I will get while doing development. For me it is a clear choice. Anyway, I'm happy that there is more than one DI library. So we can use the library that suits us best.
When you are creating a Library, we can't use HILT for dependency injection as we can't force the consumer to integrate HILT in their project. I believe then KOIN is life saviour.
Before Dagger Hilt I used to work with koin. It was my first DI library. Then I tried Dagger Hilt and I liked it more))) Hilt was more easier for me to get used to it. Maybe I prefer annotation processing over DSL))
Hello sir, I am confuse right now my plan is to learn Android development but when I see there are too many videos on the youtube and Fb groups peopls are doing with Flutter right now , ma aim is to get a job in android development can you please guid me what i do , should I need to start with the Kotlin programming or start as a Flutter , I want to do a Job in Android Development. plz answer my question.
Koin isn't dependency injection actually. It's a service locator. The end result is pretty much the same, both provide dependency, however they do it differently and hilt does it much faster, because it's done at compile time. In other words Koin has no build time impact, but has a runtime one. The opposite is true for hilt.
What if my adapter looks like this RouteAdapter(val clickCallback: (Route) -> Unit Then we are creating what inside module? :D and what if my repository looks like this class Repository( private val routeApi: RouteApi, private val RouteCacheDataSource: RouteCacheDataSource ) and my koin need this 2 dependency? ^^ just we have to use Repository(get(), get()) ?: P
Philipp - I am trying to use mockito to mock an object that is passed as an argument to the constructor of myViewModel(val dice:Dice). within the Dice class I just have a single method called roll() that just returns a random number between 1..6. It is not It is not returning 3? This is how my instrumentation setup: @Before fun init(){ stopKoin() diceMock = mock(Dice::class.java) `when`(diceMock.roll()).thenReturn(3) val testModule = module { single { diceMock } viewModel{ DiceViewModel(diceMock) } } startKoin{ // loadKoinModules(testModule) modules(testModule) } } @Test fun roll_displaysNumber() { `when`(diceMock.roll()).thenReturn(3) onView(withId(R.id.button)).perform(click()) onView(withId(R.id.textView)).check(matches(isDisplayed())) }
"Single, but I'm not talking about the life of a programmer" 🤭 ... 🤔 🥺🔫 Looks like KOIN might be a little easier to setup than Dagger/Hilt. Not that that's difficult but there is a series of things you need to setup to use it. May check out KOIN for my next project thanks for showing it big 🐕
Most Koin videos I've seen were like "here I show you a project with Dagger and migrate to Koin" or "You add this, this and this and voila, it works". But your video was exactly what a tutorial must be: explaining things step by step and made me understand it. Thank you!
A couple of weeks ago I was hoping that you would make a tutorial on Koin and you did. Thank you 😁
I'm looking into Koin after just getting really frustrated with Dagger Hilt and wow this is much easier and more flexible than hilt is. Time to migrate to Koin!
When you say, "most people overcomplicated", it reminded me of the old dagger documentation which gives the thermosiphon example 😃
Nice video btw, thanks!
Really helpful, I was unaware of how to handle named injection like Hilt. Thanks
my takeaway from the video 12:24 - single{
} // is life of a programmer XD
I almost fell of my chair :D
Lmao 😂😂
Koin being an easy to use service locater without any proxies, code generation or reflection can attract many people.
Philipp can you make a tutorial about savedStateHandle? How and when to save data and how to retrieve? Thank you.
I worry about you, how you provide such great contents for free? Thank you so much sir.
Do not worry about Philipp he is a gigachad
I only used Hilt before but definitely gonna try this. The idea of inject at runtime is very interesting!
However Hilt is backed by Google though, this is not a fair fight 🙂
Just because it has the Google badge, doesn't mean it's good😅
For hilt though, I agree 😁
Simplicity vs Complexity. Single platform vs Multi platform. Koin is both simple to use and work with Kotlin Multiplatform Mobile.
Don’t worry give it time. It will be retired like everything else
@@Joey-ni8kh ^^ this ^^
Clear explanation. Thanks philipp
Where did you get all these dependencies from? I didn't see them in the documentation I found online.
Could you do a video on baseline profiles, looks like a great way to increase app start performance
Could you pls upload a video with paging and how we can implement it with Resource class
Just the video I was needing. Thank you!
But viewmodel keyword in Koin acts as a factory? And if we want to share the VM in two fragments por example, can we use viewmodel injection like a singleton?
U r gr8 like always keep going up thank you. Single joke was good😅. Can you tell savedstatehandle with koin pls
Hey, Phillip. Chapters would be clutch for this video.
I always find DI at runtime kinda dangerous. When you have multiple flow, it is easy to miss one and you will only notice when running it.
Koin for small apps.
Hilt/Dagger for big apps.
@@D3vCansado You will be surprised how many times I saw these "very simple test cases" not implemented and caused prod bugs. Especially after 2 years and 4 dev changes. This is why I prefer compile time over run time.
I also need to say that Dagger series was kinda hard to use compared to Koin but I feel using Hilt almost easy as Koin.
@@D3vCansado There are always issues. This is why I don't want to introduce another possible problem. Pipelines, health checks, security checks fails time to time and they might be ignored to deliver prod on time. (They always say they will see at regression/sanity checks if there is a problem)
On the one hand, there are tests that I need to trust, and on the other hand, the direct error I will get while doing development. For me it is a clear choice.
Anyway, I'm happy that there is more than one DI library. So we can use the library that suits us best.
this is awesome! QQ: what if in the viewmodel constructor we need 2 or more dependency? how we inject that dependency? thanks
With you i learn Android and english :D
Thanks a lot Philipp for your guide, really great work 🙏
this is such a nice video. Thanks Philipp.
which one that you most recommend Koin or Hilt?
@Houssem Zaier nice simple answer bro
When you are creating a Library, we can't use HILT for dependency injection as we can't force the consumer to integrate HILT in their project. I believe then KOIN is life saviour.
Wow you make it very understandable. Thank you
It's really helpful. Thanks Lackner
Excellent tutorial bro - very relevant..
Very cool video
thank you bro wish you all the best 👍👍👍🔥🔥🔥🔥
Interesting. it looks so simple.
Thanks for making this video.
Thank you for the video , very helpful
Hey! Great video :D Can you do any tutorials on Anvil? It seems the community is really lacking some solid examples of its usage.
Great video as always keep it up!!!! Love you!
Nice...reminds me.
.have you done KTOR?
I need to review your library again
He's got a bunch of KTOR videos
Nice explanation! THX
Before Dagger Hilt I used to work with koin. It was my first DI library. Then I tried Dagger Hilt and I liked it more))) Hilt was more easier for me to get used to it. Maybe I prefer annotation processing over DSL))
Can you make a video about the mavericks framework?
Philipp actually dropped a joke on 12:23 🤣
Hello sir can you make a tutorial about mobile banking apps. like Bkash is very advance apps in Bangladesh.
Ko-een 😂
Cannot use koinComponents with KoinApplication composable fn any help?
.
The main difference is that Koin is a PURE Kotlin library and Hilt NOT, therefore Koin can be used in KMM/D-KMP projects where Hilt cannot!
What about preview? How to organise preview with viewModel and Koin? ay be a good them for video)
Is koin module completely Kotlin based, can we use it with KMM? As we know we can not use dagger-hilt there 🙅♂️
Koin is available for KMM.
Soo easy to use koin, hello from russia)
Thank you for your awesome contents.
12:25 EMOTIONAL DAMAGE !
Wow man. Respect.
I love to watch your videos 😍
Btw big 🐕 isn't it pronounced the same as "coin" is, like the little metal pieces of currency?
so which one is good hit or koin?
You still use koin on your project?
single : when i write that i don't want to talk about the life of the programmer, that actually means singleton 😂
Thank you so much!
Ty for this video!
Thanks a lot. 😊
Hello sir, I am confuse right now my plan is to learn Android development but when I see there are too many videos on the youtube and Fb groups peopls are doing with Flutter right now , ma aim is to get a job in android development can you please guid me what i do , should I need to start with the Kotlin programming or start as a Flutter , I want to do a Job in Android Development. plz answer my question.
Both are great ways to develop apps, but if you want to become an android developer, you should learn the android sdk
Start as a Fluffer
Koin isn't dependency injection actually. It's a service locator. The end result is pretty much the same, both provide dependency, however they do it differently and hilt does it much faster, because it's done at compile time. In other words Koin has no build time impact, but has a runtime one. The opposite is true for hilt.
And that's what I said in the video :)
@@PhilippLackner yeah, I kinda commented before watching the whole thing.
what color theme is that?
how to inject constructor?
perfecto
12:24 single 🤣
What if my adapter looks like this RouteAdapter(val clickCallback: (Route) -> Unit
Then we are creating what inside module? :D
and what if my repository looks like this
class Repository(
private val routeApi: RouteApi,
private val RouteCacheDataSource: RouteCacheDataSource
) and my koin need this 2 dependency? ^^ just we have to use Repository(get(), get()) ?: P
'....don't wanna talk about the life of a programmer' 😂😂😂
Can you teach how to make website using kotlin or please link any tutorial below
The domain name is literally "insert-koin". It's obviously intended to be pronounced "coin"!
Wait, you're telling me it isn't said "Coin"?!?
I'm pretty sure it is, it wouldn't make a heck of a lotta sense if that wasn't the case.
single not about life of programmer😂
I like koin more
Philipp - I am trying to use mockito to mock an object that is passed as an argument to the constructor of myViewModel(val dice:Dice).
within the Dice class I just have a single method called roll() that just returns a random number between 1..6. It is not
It is not returning 3?
This is how my instrumentation setup:
@Before
fun init(){
stopKoin()
diceMock = mock(Dice::class.java)
`when`(diceMock.roll()).thenReturn(3)
val testModule = module {
single { diceMock }
viewModel{
DiceViewModel(diceMock)
}
}
startKoin{
// loadKoinModules(testModule)
modules(testModule)
}
}
@Test
fun roll_displaysNumber() {
`when`(diceMock.roll()).thenReturn(3)
onView(withId(R.id.button)).perform(click())
onView(withId(R.id.textView)).check(matches(isDisplayed()))
}
"Single, but I'm not talking about the life of a programmer"
🤭
...
🤔
🥺🔫
Looks like KOIN might be a little easier to setup than Dagger/Hilt. Not that that's difficult but there is a series of things you need to setup to use it. May check out KOIN for my next project thanks for showing it big 🐕
Single = The life of a programmer😂
12:23 Come on man... :(
Brorher
Wrong title
?
My bad