Coder Social home page Coder Social logo

koin-example's Introduction

Koin-Example

With this Android app you can see how the dependency injection library Koin works. In this case I have an interface to check Internent connectivity (NetworkSystemInterface.kt) and two implementations (MockNetworkSystem.kt, NetworkSystem.kt), so when the app is launched you can set with implementation will be used. This is very useful when you are developing tests.

How to use

To use KOIN first of all you have to add this dependency to your build.gradle file:

dependencies {
    ....
    // Koin for Android
    compile 'org.koin:koin-android:1.0.2'
}

In you Application wrapper you have to start Koin indicating which modules you want to load:

class App: Application() {

    override fun onCreate() {
        super.onCreate()
        // Start Koin
        startKoin(this, listOf(AppModule().appModule))
    }
}

I have a class with the modules that we want to load:

class AppModule {

    val appModule : Module = module{

        // NetworkSystem
        single<NetworkSystemInterface> { NetworkSystem(get()) }

        // DataRepository
        factory { DataRepository(get()) }


        // VIEW MODEL
        viewModel{ GetDataViewModel(get()) }
    }
}

And in the classes that you want to inject some component you have to do something similar to this:

class ScrollingActivity : AppCompatActivity() {
    val getDataViewModel: GetDataViewModel by viewModel() // This is a ViewModel if not use "by inject()"
    ....
}

If you want to check the documentation you can look here: https://insert-koin.io/docs/1.0/getting-started/android/

koin-example's People

Contributors

jarroyoesp avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.