mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Added app's versionCode before git describe in troubleshooting fragment
This commit is contained in:
parent
c40c15b66f
commit
769006b043
1 changed files with 6 additions and 3 deletions
|
|
@ -129,9 +129,12 @@ class HelpViewModel @UiThread constructor() : GenericViewModel() {
|
|||
init {
|
||||
val currentVersion = BuildConfig.VERSION_NAME
|
||||
version.value = currentVersion
|
||||
appVersion.value = "${AppUtils.getString(R.string.linphone_app_version)} (${AppUtils.getString(
|
||||
R.string.linphone_app_branch
|
||||
)})"
|
||||
|
||||
val versionCode = BuildConfig.VERSION_CODE
|
||||
val appGitDescribe = AppUtils.getString(R.string.linphone_app_version)
|
||||
val appBranch = AppUtils.getString(R.string.linphone_app_branch)
|
||||
appVersion.value = "$versionCode - $appGitDescribe ($appBranch)"
|
||||
|
||||
sdkVersion.value = coreContext.sdkVersion
|
||||
logsUploadInProgress.value = false
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue