mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-19 04:21:27 +00:00
13 lines
329 B
Kotlin
13 lines
329 B
Kotlin
![]() |
package com.topjohnwu.magisk.base
|
||
|
|
||
|
import android.app.Service
|
||
|
import android.content.Context
|
||
|
import com.topjohnwu.magisk.utils.wrap
|
||
|
import org.koin.core.KoinComponent
|
||
|
|
||
|
abstract class BaseService : Service(), KoinComponent {
|
||
|
override fun attachBaseContext(base: Context) {
|
||
|
super.attachBaseContext(base.wrap())
|
||
|
}
|
||
|
}
|