|
@@ -26,21 +26,26 @@ package com.sybotan.android.demo
|
|
|
import android.annotation.SuppressLint
|
|
|
import android.app.Application
|
|
|
import android.content.Context
|
|
|
+import android.content.SharedPreferences
|
|
|
import android.util.Log
|
|
|
+import androidx.core.content.edit
|
|
|
import com.arashivision.sdkcamera.InstaCameraSDK
|
|
|
import com.arashivision.sdkmedia.InstaMediaSDK
|
|
|
+import com.framework.app.deviceId
|
|
|
import com.framework.di.*
|
|
|
import com.sybotan.android.demo.tools.AssetsUtil
|
|
|
import org.kodein.di.DI
|
|
|
import org.kodein.di.DIAware
|
|
|
import org.kodein.di.android.x.androidXModule
|
|
|
+import org.kodein.di.instance
|
|
|
import java.io.File
|
|
|
+import java.util.*
|
|
|
|
|
|
|
|
|
class DemoApp : Application(), DIAware {
|
|
|
|
|
|
override val di: DI by DI.lazy {
|
|
|
- // import(androidCoreModule(this@DemoApp))
|
|
|
+ // import(androidCoreModule(this@DemoApp))
|
|
|
import(androidXModule(this@DemoApp))
|
|
|
import(databaseModule)
|
|
|
import(httpModule)
|
|
@@ -50,6 +55,8 @@ class DemoApp : Application(), DIAware {
|
|
|
//import(factoryModule)
|
|
|
}
|
|
|
|
|
|
+ val sp by instance<SharedPreferences>()
|
|
|
+
|
|
|
companion object {
|
|
|
private val TAG = DemoApp::class.java.name
|
|
|
var sInstance: DemoApp? = null
|
|
@@ -82,6 +89,14 @@ class DemoApp : Application(), DIAware {
|
|
|
|
|
|
// Copy sample pictures from assets to local
|
|
|
copyHdrSourceFromAssets()
|
|
|
+ val deviceId = sp.getString(deviceId, "") ?: ""
|
|
|
+
|
|
|
+ if (deviceId.isEmpty()) {
|
|
|
+ sp.edit {
|
|
|
+ putString(deviceId, "${UUID.randomUUID()}")
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
return
|
|
|
} // Function onCreate()
|
|
|
|