Android Clean

From bibbleWiki
Jump to navigation Jump to search

Notes to sort out

@SUPPRESS

This suppresses the depreciation at compile time

    @Suppress("DEPRECATION")
    val isConnected: Boolean
        get() = (context.getSystemService(Context.CONNECTIVITY_SERVICE) as? ConnectivityManager)?.run {

Dependency Injection

This example shows use of DI. A brief reminder of Dagger.

  • @Provider, a service
  • @Module, group of providers
  • @Component, group of modules