This commit is contained in:
zxj
2025-07-08 15:40:39 +08:00
parent d2698ed60f
commit 4501b6d5fc
132 changed files with 8998 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
package com.sw.inbound
import android.app.Application
import com.sw.inbound.utils.ContextUtils
import dagger.hilt.android.HiltAndroidApp
import timber.log.Timber
@HiltAndroidApp
class MyApp : Application() {
companion object {
const val DEBUG: Boolean = true
}
override fun onCreate() {
super.onCreate()
Timber.plant(Timber.DebugTree())
ContextUtils.initAppContext(this)
// 初始化崩溃处理器
// CrashHandler.init(this)
}
}