Krystian Chęciński
Krystian Chęciński
Are there any updates on this?
I am having the same issue after upgrading to 3.6.0-Beta4. When looking at the stacktrace, the error comes from Voyager in my case.
I've tried it as such: ```kotlin class MainApp : Application() { override fun onCreate() { super.onCreate() startKoin { androidContext(this@MainApp) modules( appModule(), androidModule() ) logger(PrintLogger()) } } } ``` But I...
Yes, that's exactly the issue. I had to register application class in manifest file and everything works now. And I've checked and after chaning theme the app doesn't crash. Thank...