mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
Fixed build with latest 5.4 SDK & bumped dependencies
This commit is contained in:
parent
4c66012372
commit
e29d64a02b
2 changed files with 4 additions and 4 deletions
|
|
@ -87,13 +87,13 @@ class HelpViewModel @UiThread constructor() : GenericViewModel() {
|
|||
override fun onVersionUpdateCheckResultReceived(
|
||||
core: Core,
|
||||
result: VersionUpdateCheckResult,
|
||||
version: String?,
|
||||
version: String,
|
||||
url: String?
|
||||
) {
|
||||
when (result) {
|
||||
VersionUpdateCheckResult.NewVersionAvailable -> {
|
||||
Log.i("$TAG Update available, version [$version], url [$url]")
|
||||
if (!version.isNullOrEmpty() && !url.isNullOrEmpty()) {
|
||||
if (version.isNotEmpty() && !url.isNullOrEmpty()) {
|
||||
newVersionAvailableEvent.postValue(Event(Pair(version, url)))
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,8 +6,8 @@ firebaseCrashlytics = "3.0.2"
|
|||
firebaseBomVersion = "33.1.2"
|
||||
ktlint = "11.3.1"
|
||||
|
||||
annotations = "1.8.0"
|
||||
activity = "1.9.0"
|
||||
annotations = "1.8.1"
|
||||
activity = "1.9.1"
|
||||
appcompat = "1.7.0"
|
||||
constraintLayout = "2.1.4"
|
||||
coreKtx = "1.13.1"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue