java.lang.NoSuchMethodError: No virtual method elapsedNow()D in class Lkotlin/time/TimeMark

Apparently this issue is due to the usage of androidLogger() together with Koin. There is only a workaround for now, which is migrating from androidLogger() to androidLogger(Level.ERROR)

There is already an issue created for this purpose:

https://github.com/InsertKoinIO/koin/issues/847


With the latest alpha version the problem is solved in my case.

// latest unstable
koin_version = '2.2.0-alpha-1'
implementation "org.koin:koin-androidx-scope:$koin_version"
implementation "org.koin:koin-androidx-viewmodel:$koin_version"
implementation "org.koin:koin-androidx-fragment:$koin_version"

Go to the main documentation for more details: https://github.com/InsertKoinIO/koin#current-version

Another way to avoid the problem is how @Aydinozkan says by setting the logger level to error or none.

startKoin {
        androidLogger(Level.NONE)          
    }