Bump version for mail-message to fix a `NoSuchMethodError` crash

The class `GetRecipientPublicAddresses` (which is in mail-message module)
is calling `publicAddressKeyRepository.getPublicAddressOrNull`. At one point,
the third argument of this method was changed from boolean to Source,
so the method signature has changed.

`GetRecipientPublicAddresses` was calling this method only with
two arguments, and the third one was implicit (as it had a default value).

As a result, we didn't get any compilation errors, but the app would crash at runtime.
This commit is contained in:
Mateusz Armatys 2021-11-10 11:42:50 +01:00
parent fab03b10f9
commit 1881d385ba
4 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
## Mail Message [1.15.1]
### Changes
- Incremented version for Mail Message module to fix a `NoSuchMethodError` crash
## Test Android Instrumented [1.15.5]
### Changes

View File

@ -23,7 +23,7 @@ plugins {
kotlin("android")
}
libVersion = Version(1, 15, 0)
libVersion = Version(1, 15, 1)
android()

View File

@ -24,7 +24,7 @@ plugins {
kotlin("plugin.serialization")
}
libVersion = Version(1, 15, 0)
libVersion = parent?.libVersion
android()

View File

@ -23,7 +23,7 @@ plugins {
kotlin("jvm")
}
libVersion = Version(1, 15, 0)
libVersion = parent?.libVersion
dependencies {