Updated AndroidX

pull/215/head
M66B 3 months ago
parent 6c460eef23
commit 4938e5c811

@ -16,6 +16,7 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
* Added support for SVG data URI images
* Small improvements and minor bug fixes
* Updated [AndroidX](https://developer.android.com/jetpack/androidx/versions/all-channel)
* Updated [Public Suffix List](https://github.com/publicsuffix/list)
* Updated [translations](https://crowdin.com/project/open-source-email)

@ -529,7 +529,7 @@ configurations.configureEach {
} else if (details.requested.group == "androidx.lifecycle" &&
details.requested.name != "lifecycle-extensions") {
//print("Pinning " + details.requested.group + ":" + details.requested.name + "\n")
details.useVersion "2.8.3"
details.useVersion "2.8.4"
} else if (details.requested.group == "org.apache.poi") {
//print("Pinning " + details.requested.group + ":" + details.requested.name + "\n")
details.useVersion "3.17"
@ -553,8 +553,8 @@ dependencies {
def appcompat_version = "1.7.0"
def emoji_version = "1.4.0" // 1.5.0-beta01
def flatbuffers_version = "2.0.0"
def activity_version = " 1.9.0" // 1.10.0-alpha01
def fragment_version = "1.8.1"
def activity_version = " 1.9.1" // 1.10.0-alpha01
def fragment_version = "1.8.2"
def windows_version = "1.2.0" // 1.3.0-rc01
def webkit_version = "1.10.0" // 1.11.0/1.12.0-alpha02
def recyclerview_version = "1.3.2" // 1.4.0-alpha01
@ -565,7 +565,7 @@ dependencies {
def lbm_version = "1.1.0"
def swiperefresh_version = "1.2.0-alpha01"
def documentfile_version = "1.1.0-alpha01"
def lifecycle_version = "2.8.3"
def lifecycle_version = "2.8.4"
def lifecycle_extensions_version = "2.2.0"
def room_version = "2.4.3" // 2.5.2/2.6.1/2.7.0-alpha05
def sqlite_version = "2.4.0" // 2.5.0-alpha05

@ -16,6 +16,7 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
* Added support for SVG data URI images
* Small improvements and minor bug fixes
* Updated [AndroidX](https://developer.android.com/jetpack/androidx/versions/all-channel)
* Updated [Public Suffix List](https://github.com/publicsuffix/list)
* Updated [translations](https://crowdin.com/project/open-source-email)

@ -109,6 +109,7 @@ public fun <T> LiveData<T>.asFlow(): Flow<T> = callbackFlow {
}
try {
withContext(Dispatchers.Main.immediate) { observeForever(observer) }
awaitCancellation()
} finally {
withContext(Dispatchers.Main.immediate + NonCancellable) {

@ -16,6 +16,7 @@ Next version
* Added support for SVG data URI images
* Small improvements and minor bug fixes
* Updated AndroidX
* Updated Public Suffix List
* Updated translations

Loading…
Cancel
Save