2026-05-19 23:01:08 +08:00
|
|
|
package com.example.androidruler
|
|
|
|
|
|
|
|
|
|
import android.app.Application
|
2026-05-20 22:56:17 +08:00
|
|
|
import com.example.androidruler.util.DebugLogger
|
2026-05-19 23:01:08 +08:00
|
|
|
|
2026-05-20 22:56:17 +08:00
|
|
|
class RulerApplication : Application() {
|
|
|
|
|
override fun onCreate() {
|
|
|
|
|
super.onCreate()
|
|
|
|
|
DebugLogger.init(this)
|
|
|
|
|
}
|
|
|
|
|
}
|