Update koin to v4 (major)

This commit is contained in:
Renovate Bot 2025-04-04 09:36:19 +00:00 committed by Nite
parent 6eb20d1c0b
commit 0fc836cf83
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ retrofit = "2.11.0"
## KEEP ON 2.13 branch (https://github.com/FasterXML/jackson-databind/issues/3658#issuecomment-1312633064) for compatibility with API 24
jackson = "2.16.0"
okhttp = "4.12.0"
koin = "3.5.6"
koin = "4.0.4"
picasso = "2.8"
junit4 = "4.13.2"

View File

@ -455,10 +455,10 @@ class NavigationActivity : ScopeActivity() {
return findNavController(R.id.nav_host_fragment).navigateUp(appBarConfiguration)
}
override fun onNewIntent(intent: Intent?) {
override fun onNewIntent(intent: Intent) {
super.onNewIntent(intent)
when (intent?.action) {
when (intent.action) {
Constants.INTENT_PLAY_RANDOM_SONGS -> {
playRandomSongs()
}