Compare commits

...

3 Commits

Author SHA1 Message Date
Sathwik C S
7785f24441 Edit FirebaseManage.kt 2025-02-17 07:32:32 +00:00
chandrashekhar reddy
5f2d5fed85 app version 131 2025-02-17 11:26:44 +05:30
chandrashekhar reddy
c312bf0f39 app version 131 2025-01-23 10:07:07 +05:30
4 changed files with 11 additions and 4 deletions

View File

@@ -4,15 +4,15 @@
"type": "APK",
"kind": "Directory"
},
"applicationId": "in.sminnovations.hpostesting.dev",
"applicationId": "in.sminnovations.hpostesting.server",
"variantName": "release",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 127,
"versionName": "2.1.127",
"versionCode": 133,
"versionName": "2.1.131",
"outputFile": "app-release.apk"
}
],

View File

@@ -145,7 +145,7 @@ private val firebaseConfig2 = FirebaseConfig(
)
private val firebaseConfig3 = FirebaseConfig(
serverName = "prod",
serverName = " pre prod",
apiKey = "AIzaSyDYySi27LioZGNisP1NfnNU5inJX_0FT38",
appId = "1:121176529204:android:a7bc0842f61e5095bbed61",
projectId = "hpos-preprod",

View File

@@ -1390,6 +1390,7 @@ class TrueHemeTestFragment : Fragment() {
apply()
}
}
trueHemeTestViewModel.updateLocalData()
} catch (e: Exception) {
Toast.makeText(
requireContext(),

View File

@@ -791,4 +791,10 @@ class TrueHemeTestViewModel @Inject constructor(
"yyyy-MM-dd HH:mm:ss", Locale.getDefault()
).format(Calendar.getInstance().time)
}
fun updateLocalData() {
viewModelScope.launch {
parseData()
hemoCubeDao.updateTest(testDetails!!)
}
}
}