This commit is contained in:
2026-04-28 11:01:10 +08:00
parent 1b62e4d264
commit 8a5f599266
15 changed files with 419 additions and 32 deletions

View File

@@ -0,0 +1,10 @@
package com.example.defenseapplication
import android.app.Application
import com.blankj.utilcode.util.Utils;
class MyApplication : Application(){
override fun onCreate() {
super.onCreate()
Utils.init(this) // 初始化 AndroidUtilCode
}
}