or maybe I am applying it wrong it in kotlin? I do...
# rx
u
or maybe I am applying it wrong it in kotlin? I do was a bit confused how to do static { } in kotlin
Copy code
class App : Application() {
    val appInjector by lazy { AppInjector(this) }

    override fun onCreate() {
        super.onCreate()

        RxAndroidPlugins.setInitMainThreadSchedulerHandler {
            AndroidSchedulers.from(Looper.getMainLooper(), true)
        }    
    }
}
onCreate should be fine?