manager: ui refactor (#21)

* manager: ui refactor
This commit is contained in:
Nullptr
2022-12-26 08:59:37 +08:00
committed by GitHub
parent 4c9942dd3f
commit 894b2e99ed
33 changed files with 894 additions and 949 deletions

View File

@@ -0,0 +1,13 @@
package me.weishu.kernelsu
import android.app.Application
lateinit var ksuApp: KernelSUApplication
class KernelSUApplication : Application() {
override fun onCreate() {
super.onCreate()
ksuApp = this
}
}