Update core to v1.12.0 (#1242)

* Update core to v1.12.0

* Fixed now nullable `PendingIntent` creation

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jorge Martín <jorgem@element.io>
This commit is contained in:
renovate[bot]
2023-09-12 12:00:29 +02:00
committed by GitHub
parent 0ed6268f12
commit 29bbb0bfc4
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ molecule = "1.2.0"
# AndroidX
material = "1.9.0"
core = "1.10.1"
core = "1.12.0"
datastore = "1.0.0"
constraintlayout = "2.1.4"
constraintlayout_compose = "1.0.1"

View File

@@ -131,6 +131,6 @@ class PendingIntentFactory @Inject constructor(
fun createInviteListPendingIntent(sessionId: SessionId): PendingIntent {
val intent = intentProvider.getInviteListIntent(sessionId)
return PendingIntentCompat.getActivity(context, 0, intent, 0, false)
return PendingIntentCompat.getActivity(context, 0, intent, 0, false)!!
}
}