123456789101112131415161718192021222324 |
- package com.xkl.cdl.module
-
- import android.app.Application
- import com.suliang.common.util.LogUtil
- import net.sqlcipher.database.SQLiteDatabase
- import java.util.*
-
- /**
- * author suliang
- * create 2022/3/14 11:27
- * Describe:
- */
- class XKLApplication : Application() {
-
- override fun onCreate() {
- super.onCreate()
- SQLiteDatabase.loadLibs(this)
- // ImageLoader.mStrategy = GlideLoaderStrategy()
- LogUtil.e(UUID.randomUUID().toString().replace("-",""))
-
-
- }
-
- }
|