代码提交

This commit is contained in:
2025-08-06 17:19:04 +08:00
parent 089eea015e
commit f0f89982be
64 changed files with 2536 additions and 0 deletions
@@ -0,0 +1,23 @@
package com.shuwei.intelligent.shelves
import android.app.Application
/**
* @author: star
* @date: 2022-04-26
*/
class App : Application() {
override fun onCreate() {
super.onCreate()
app = this
}
companion object {
private lateinit var app: App
fun get(): App {
return app
}
}
}