DEV Community

David Rufai
David Rufai

Posted on

Dependency Injection in Jetpack Compose with Koin: A "Koincidence"?

post image

Have you ever felt like your code is drowning in dependencies, tangled like some Italian spaghetti? Fear not! Dependency Injection (DI) is here to save the day, and this time with an elder wand Koin 😊, seriously, it’s as simple as flipping a coin 🌚! Let's dive into how you can inject dependencies in your Jetpack Compose app and give your code some much-needed structure—without breaking the spacetime continuum.

Well, what's the Deal with Koin?

Koin is a lightweight DI framework built in Kotlin. Think of it as a friendly neighborhood library that helps you manage your dependencies without all the boilerplate code. It’s like hiring an assistant who knows where everything is and hands it to you when you need it. Ready to make your code cleaner? Let’s get started!

1: Add Koin to your project

First, you’ll need to add Koin to your project. Head to your app module build.gradle file and include the following lines in the dependencies section and sync gradle files:

dependencies {
    implementation "io.insert-koin:koin-android:3.1.6"
    implementation "io.insert-koin:koin-androidx-compose:3.1.6"
}
Enter fullscreen mode Exit fullscreen mode

that's it, we've just summon our very own Elder wand.

2: Define Your Modules

Think of a Koin module as your favorite meal prep service—it organizes all your dependencies so you don’t have to scramble at the last minute. Here’s how you can define a module to serve up some dependencies:

val appModule = module {
    single { Repository() }  // Singleton pattern
    factory { ViewModel(get()) }  // Factory pattern
}
Enter fullscreen mode Exit fullscreen mode

In this module:

  • We have a Repository that’s served as a single instance (singleton).
  • The ViewModel gets created fresh every time, with the Repository injected like magic.

3: Start Koin in Your App

Before you can start injecting stuff, you need to initialize Koin in your app’s Application class. Don't worry, it’s a one-time setup.

class MyApp : Application() {
    override fun onCreate() {
        super.onCreate()
        startKoin {
            androidLogger()
            androidContext(this@MyApp)
            modules(appModule)
        }
    }
}
Enter fullscreen mode Exit fullscreen mode

Note: Don't forget to define your application class in your app's AndroidManifest.xml file using the android:name attribute in the application tag.

4: Inject in Jetpack Compose

Alright! How do we inject dependencies into our Jetpack Compose UI? It’s Surprisingly easy, no rituals, sermons, or incantations needed.

@Composable
fun MyScreen(viewModel: ViewModel = get()) {
    val data = viewModel.loadData()
    Text(text = "Data: $data")
}
Enter fullscreen mode Exit fullscreen mode

The magic here is get()—it tells Koin to inject the necessary dependencies. And just like that, you’ve turned a complicated mess into a clean, organized flow. You’re a magician at this point. 🎩✨


With Koin, you can wave goodbye to manual dependency management and say hello to clean, testable, and maintainable code. Your codebase & anyone
else who works on it will thank you, and you’ll wonder why you ever did it the hard way.

Conclusion 🏁

Koin makes dependency injection in Jetpack Compose a walk in the park. It’s lightweight, easy to use, and saves you from writing boilerplate code—like a pocket-size superhero for your app. So, go ahead, flip the "Koin", and let it work its magic in your next project! Just remember, with great power comes great injectability.

Happy coding, and may your dependencies always be well-injected! 😌

Top comments (0)