Тёмный
No video :(

Full Guide to Dependency Injection With Koin for Compose Multiplatform - KMP for Beginners 

Philipp Lackner
Подписаться 177 тыс.
Просмотров 10 тыс.
50% 1

In this video you'll find a full guide to Dependency Injection With Koin for Compose Multiplatform!
👉 Check out my course Building Industry-Level Multiplatform Apps With KMP here: pl-coding.com/...
💻 Let me be your mentor and become an industry-ready Android developer in 10 weeks:
pl-coding.com/...
⭐ Courses with real-life practices
⭐ Save countless hours of time
⭐ 100% money back guarantee for 30 days
⭐ Become a professional Android developer now:
pl-coding.com/...
Get my FREE PDF about 20 things you should never do in Jetpack Compose:
pl-coding.com/...
Get the source code on GitHub:
github.com/phi...
Regular programming advice on my Instagram page: / _philipplackner_
Join my Discord server:
/ discord

Опубликовано:

 

29 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 50   
@zakariabouchantouf5141
@zakariabouchantouf5141 Месяц назад
Jetbrain KMP should contract with you to produce their videos because you are the best at it ❤😍
@malschauen6267
@malschauen6267 Месяц назад
Really? If i was new to this (did a lot in CDI) i would be quite lost here.
@zakariabouchantouf5141
@zakariabouchantouf5141 Месяц назад
@@malschauen6267 how?
@malschauen6267
@malschauen6267 Месяц назад
@@zakariabouchantouf5141 I meant this regarding the overall difficulty level and the intended audience of the KMP playlist (beginners in KMP). The earlier videos with their examples are a lot easier to understand. This DI video feels like a big jump up. But I wrote my comment as an answer to your comment, which is inappropriate, so I am sorry for that. In general I also think, that PL does indeed produce the best videos regarding KMP and it would be a big win, if Jetbrains would contract him.
@tzstudios
@tzstudios Месяц назад
Hi Philipp, can you make a video on how to use swift UI components with compose multiplatform. Like implementing AdMob on iOS and android.
@mikelantzelo
@mikelantzelo Месяц назад
Plz include desktop for compose multi platform in your videos. Thanks for great stuff !!!
@comicsans1230
@comicsans1230 Месяц назад
Yeah, I agree. Futhermore, the desktop in KMP is stable
@DaleHawkins
@DaleHawkins Месяц назад
This does work for desktop. See his other videos for how to launch it. I only had to add a dependency for coroutines on swing in libs.version.toml [versions] kotlinx-serialization = "1.6.0" [libraries] jetbrains-kotlinx-coroutines-swing = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-swing", version.ref = "kotlinxCoroutinesSwing" } in composeApp/build.gradle.kts kotlin { // ... desktopMain.dependencies { implementation(compose.desktop.currentOs) implementation(libs.jetbrains.kotlinx.coroutines.swing) } // ... } Then chose the MainKt target, launch a terminal, then run "./gradlew run"
@PhilippLackner
@PhilippLackner Месяц назад
@@mikelantzelo all these videos are made with desktop in mind :)
@comicsans1230
@comicsans1230 Месяц назад
@@DaleHawkins agree, my mistake
@prathivar6721
@prathivar6721 День назад
Hi Phil love ur content but can u focus mainly on KMM , I agree few are common for both CMP & KMM but sometimes few things which are no needed for KMM are included due to CMP
@meshoraouf8929
@meshoraouf8929 Месяц назад
Plz continue and tell us how to select files or images and open the camera and read or write qrcode and more Thank you for your support
@yaroslavglonin
@yaroslavglonin Месяц назад
very simple example and koin is a service locator pattern😊 Good work!
@_runtime
@_runtime Месяц назад
Android team made ViewModel multiplatform too, I guess that's why you were able to put that definition to the common module. Would be nice to see some usage examples. For instance, since navigation and view model are both multiplatform, I expect the navigation to work just fine in compose multiplatform, including injecting navigation arguments to view models. But those injected arguments are read from SavedStateHandle, which feels pretty Android-specific. I wonder if that's also multiplatform, will you be able to add that dependency to your ViewModel class constructor and read out flows of arguments (just like we do on Android)?
@PhilippLackner
@PhilippLackner Месяц назад
@@_runtime I made a video about the KMP ViewModel already but as far as I remember the shared function wasn't available at that time yet which is why I was surprised
@PhilippLackner
@PhilippLackner Месяц назад
@@_runtime not sure about saved state handle but normally koin supports thaz
@YaMehdi
@YaMehdi Месяц назад
@PhilippLackner Please arrange the playlist, because it is not in order. ▶
@osmanmusse9432
@osmanmusse9432 Месяц назад
Great videos, you've been doing lately regarding KMP lets go :D
@DaleHawkins
@DaleHawkins Месяц назад
Great video. Super useful! Thanks for the this series.
@aiders4352
@aiders4352 Месяц назад
Great video. Thoughts on Koin Annotations? Would be great to see a part 2 using it 😀
@sureshseeni8214
@sureshseeni8214 27 дней назад
When i using network call using coroutines incetance create issue with ios app.. desktop and Android apps works fine
@user-wk2hk8ln5b
@user-wk2hk8ln5b Месяц назад
Can you make video about di scopes please? What if I don‘t want to create everything as ‘single‘ or in which scenario should we use singleton? I couldn’t find any helpful guide on it
@user-lm6zz3xj3e
@user-lm6zz3xj3e Месяц назад
Hello, I am exactly using the same version of libraries u using but I get errors in this line singleOf(:DbClient:) I imported the same package but it still showing error: "None of the following functions can be called with the arguments supplied"
@olalekanraheem4655
@olalekanraheem4655 Месяц назад
@PhilippLackner Can i leverage koin and viewModel in a case where I am sharing logic but not UI (maybe am just looking to share a little UI across all platforms, e.g a button) Also can I share just viewModels only across all platforms. Thanks
@andreaslinis1586
@andreaslinis1586 Месяц назад
Hello Philip really helpful your videos. Kotlin multiplatform could also work with interfaces too. I'd prefer this approach because it's more "object oriented" way than expect/actual mechanism. What do you think about this are there any drawbacks on using interfaces instead of expect/actual?
@bakjoul
@bakjoul 4 дня назад
Hello. I'm trying to run the web version of a test app but i get this error at build : "No matching variant of androidx.lifecycle:lifecycle-viewmodel-compose:2.8.4 was found."
@prathivar6721
@prathivar6721 День назад
bro believe me as of now KMM is good to go for the production , CMP a log way to go . so learn compose UI and some important libraries and wait . if u want u can try KMM as it's promising even now, but CMP a long way to go
@origin-pe8hy
@origin-pe8hy Месяц назад
In my case androidContext in android init crashes with exception. I don't understand
@RashidSoftfruit
@RashidSoftfruit Месяц назад
very nice tutorial keep going ahead
@TshegoEagles
@TshegoEagles Месяц назад
You indeed the best
@152jao
@152jao Месяц назад
You're the best
@osisuper98
@osisuper98 Месяц назад
Clean!
@DanniiTran
@DanniiTran Месяц назад
Can you just use KoinApplication composable in commonCompose instead of initKoin() in separate platforms?
@PhilippLackner
@PhilippLackner Месяц назад
@@DanniiTran no then you can't add platform specific dependencies like Context
@danial2771
@danial2771 Месяц назад
Hey i have the total instructions but not able to execute could you instruct me how to follow the steps in a basic manner
@skarloti
@skarloti Месяц назад
I think that the Kotlin language should solve this problem soon, For example with context receivers. When using a DI library, if it does not use a Clean Architecture design pattern, it will be difficult to trace in the code where a particular dependency is injected. The very thing IDE powerless at times. I don't like all these classes that are built with DI. This should be done stably by Kotlin 2.0 in memory without a DI library in my opinion.I may not be right, but only time will tell.
@JamesBond-mq7pd
@JamesBond-mq7pd Месяц назад
Philip makes KMP not scary
@abobus_f1
@abobus_f1 Месяц назад
please record video about splash screen in kmp
@osisuper98
@osisuper98 Месяц назад
Just build yours using CMP
@teddytez9003
@teddytez9003 Месяц назад
fyi i believe u misspelled koin instead of kotlin, but rest is helpful
@PhilippLackner
@PhilippLackner Месяц назад
@@teddytez9003 koin is the library we use here 😅
@teddytez9003
@teddytez9003 Месяц назад
@@PhilippLackner seems like I made the mistak, sorry
@gerdsfargen6687
@gerdsfargen6687 Месяц назад
​@@teddytez9003troll
@mohsenrzna8473
@mohsenrzna8473 Месяц назад
"Dependency Injection is not just passing objects to objects"
@PhilippLackner
@PhilippLackner Месяц назад
@@mohsenrzna8473 what is it then? 😄
@rishigupta1347
@rishigupta1347 Месяц назад
Hi Phillip, i want to learn kotin jetpack compose and kmp from you and work with you . I have worked with jetpack compose before and have a basic idea on it . With that this summer i interned at Microsoft for 8 weeks .. Where can i contact you??
Далее
Koin в Android на практике c MVVM
28:08
Просмотров 23 тыс.
Муж на час 😂
00:37
Просмотров 931 тыс.
Kotlin Code Reuse: Composing like you're Inheriting
14:42
React Native CLI Setup for Windows [Created in 2024]
25:02
AMD slayed the dragon - AMD Ryzen 9 9900X & 9950X
8:39
Муж на час 😂
00:37
Просмотров 931 тыс.