ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Koin’s Isolated Context

Stefano Natali
ProAndroidDev
Published in
5 min readDec 7, 2024

Generated by Leonardo.AI

What is Koin’s Isolated Context?

Setting Up Koin’s Isolated Context

object MyIsolatedKoinContext {

val koinApp = koinApplication {
modules(myModule)
}

val koin = koinApp.koin
}

Using the Isolated Koin Context in Compose

setContent {
KoinIsolatedContext(context = MyIsolatedKoinContext.koinApp) {
// Your Compose content here
}
}

Using the Isolated Koin Context in Other Classes

class Example : KoinComponent {
// Existing Koin usage
}
abstract class IsolatedKoinComponent : KoinComponent {

// Override the default Koin instance
override fun getKoin(): Koin = MyIsolatedKoinContext.koin
}
class Example : IsolatedKoinComponent {
// Uses the isolated Koin context
}

Testing

class MyClassTest : KoinTest {

// Override the default Koin instance with the isolated context
override fun getKoin(): Koin = MyIsolatedKoinContext.koin

@Before
fun setUp() {
val testModule = module {
// Define your test-specific dependencies here
}

koin.loadModules(listOf(testModule))
}
}

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

No responses yet

Write a response