学考乐离线App
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

XKLApplication.kt 491B

123456789101112131415161718192021222324
  1. package com.xkl.cdl.module
  2. import android.app.Application
  3. import com.suliang.common.util.LogUtil
  4. import net.sqlcipher.database.SQLiteDatabase
  5. import java.util.*
  6. /**
  7. * author suliang
  8. * create 2022/3/14 11:27
  9. * Describe:
  10. */
  11. class XKLApplication : Application() {
  12. override fun onCreate() {
  13. super.onCreate()
  14. SQLiteDatabase.loadLibs(this)
  15. // ImageLoader.mStrategy = GlideLoaderStrategy()
  16. LogUtil.e(UUID.randomUUID().toString().replace("-",""))
  17. }
  18. }