You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
a9b00dd537
This needed to be done in order to get the Koin working as it requires injection before calling onCreate
21 lines
596 B
Kotlin
21 lines
596 B
Kotlin
package com.topjohnwu.magisk.di
|
|
|
|
import android.content.Context
|
|
import androidx.preference.PreferenceManager
|
|
import com.skoumal.teanity.rxbus.RxBus
|
|
import com.topjohnwu.magisk.App
|
|
import org.koin.dsl.module
|
|
|
|
|
|
val applicationModule = module {
|
|
single { RxBus() }
|
|
single { get<Context>().resources }
|
|
single { get<Context>() as App }
|
|
single { get<Context>().packageManager }
|
|
single(SUTimeout) {
|
|
get<App>().protectedContext
|
|
.getSharedPreferences("su_timeout", 0)
|
|
}
|
|
single { PreferenceManager.getDefaultSharedPreferences(get<App>().protectedContext) }
|
|
}
|