@@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.
Thanks for the tutorial! Just a suggestion: it would be beneficial for learners if you could show your folder structure, as I found it difficult to follow without knowing where the files were being created.
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"
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)?
@@_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
All of the features you mentioned already existed on other RUclips channels more than two or three years ago and are still available today. I still use logic from some channels, perhaps from seven or eight years ago, but it still works for XML and Compose
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
Hi Philipp Thank you for your helpful videos, I was trying to use Koin in my multiplatform project then I realized "io.insert-koin:koin-compose-viewmodel" doesn't work on Wasm, and ViewModel cannot be injected.
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
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?
Hi . First of all thanks for the tutorial. I would like to see more video tutorial about compose Multiplatform. In particular can you implement ML Kit for text recognition Android side and Vision iOS side? Thanks
@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
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"
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."
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
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.
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??
Jetbrain KMP should contract with you to produce their videos because you are the best at it ❤😍
Really? If i was new to this (did a lot in CDI) i would be quite lost here.
@@malschauen6267 how?
@@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.
Thanks ! I was having trouble with the documentation but this video was perfect i could start my app
Hi Philipp, can you make a video on how to use swift UI components with compose multiplatform. Like implementing AdMob on iOS and android.
Thanks for the tutorial! Just a suggestion: it would be beneficial for learners if you could show your folder structure, as I found it difficult to follow without knowing where the files were being created.
Man, you need to watch the video agains, he always show the folder structure, try to watch again, sorry for my bad English. 🙂
Plz include desktop for compose multi platform in your videos. Thanks for great stuff !!!
Yeah, I agree. Futhermore, the desktop in KMP is stable
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"
@@mikelantzelo all these videos are made with desktop in mind :)
@@DaleHawkins agree, my mistake
very simple example and koin is a service locator pattern😊 Good work!
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)?
@@_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
@@_runtime not sure about saved state handle but normally koin supports thaz
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
All of the features you mentioned already existed on other RUclips channels more than two or three years ago and are still available today. I still use logic from some channels, perhaps from seven or eight years ago, but it still works for XML and Compose
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
Hi Philipp
Thank you for your helpful videos, I was trying to use Koin in my multiplatform project then I realized "io.insert-koin:koin-compose-viewmodel" doesn't work on Wasm, and ViewModel cannot be injected.
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
@PhilippLackner Please arrange the playlist, because it is not in order. ▶
Great video. Thoughts on Koin Annotations? Would be great to see a part 2 using it 😀
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?
Hi . First of all thanks for the tutorial. I would like to see more video tutorial about compose Multiplatform. In particular can you implement ML Kit for text recognition Android side and Vision iOS side? Thanks
@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
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"
Koin with KMP is certainly hard to debug .... Hilt/Dagger was easy in comparison since I am used to that.
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."
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
Philip makes KMP not scary
Great video. Super useful! Thanks for the this series.
your KMP premium course is included delivery? iOS sign etc with CI/CD?
@@morpheus4564 no but there's a separate cicd course :)
When i using network call using coroutines incetance create issue with ios app.. desktop and Android apps works fine
In my case androidContext in android init crashes with exception. I don't understand
Hey i have the total instructions but not able to execute could you instruct me how to follow the steps in a basic manner
Great videos, you've been doing lately regarding KMP lets go :D
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.
very nice tutorial keep going ahead
Can you just use KoinApplication composable in commonCompose instead of initKoin() in separate platforms?
@@DanniiTran no then you can't add platform specific dependencies like Context
You indeed the best
You're the best
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??
please record video about splash screen in kmp
Just build yours using CMP
Clean!
fyi i believe u misspelled koin instead of kotlin, but rest is helpful
@@teddytez9003 koin is the library we use here 😅
@@PhilippLackner seems like I made the mistak, sorry
@@teddytez9003troll
"Dependency Injection is not just passing objects to objects"
@@mohsenrzna8473 what is it then? 😄