Merge branch 'develop' into feature/bma/crashRxSingle
This commit is contained in:
commit
0a72cc4c93
@ -11,6 +11,7 @@ Bugfix 🐛:
|
|||||||
- Message states cosmetic changes (#3007)
|
- Message states cosmetic changes (#3007)
|
||||||
- Fix exception in rxSingle (#3180)
|
- Fix exception in rxSingle (#3180)
|
||||||
- Do not invite the current user when creating a room (#3123)
|
- Do not invite the current user when creating a room (#3123)
|
||||||
|
- Fix color issues when the system theme is changed (#2738)
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
-
|
-
|
||||||
|
@ -16,7 +16,7 @@ buildscript {
|
|||||||
classpath 'com.google.gms:google-services:4.3.5'
|
classpath 'com.google.gms:google-services:4.3.5'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.1.1'
|
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.1.1'
|
||||||
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.3'
|
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.4'
|
||||||
classpath "com.likethesalad.android:string-reference:1.2.2"
|
classpath "com.likethesalad.android:string-reference:1.2.2"
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
|
@ -115,7 +115,7 @@ dependencies {
|
|||||||
def lifecycle_version = '2.2.0'
|
def lifecycle_version = '2.2.0'
|
||||||
def arch_version = '2.1.0'
|
def arch_version = '2.1.0'
|
||||||
def markwon_version = '3.1.0'
|
def markwon_version = '3.1.0'
|
||||||
def daggerVersion = '2.34'
|
def daggerVersion = '2.34.1'
|
||||||
def work_version = '2.5.0'
|
def work_version = '2.5.0'
|
||||||
def retrofit_version = '2.9.0'
|
def retrofit_version = '2.9.0'
|
||||||
|
|
||||||
|
@ -294,10 +294,10 @@ dependencies {
|
|||||||
def fragment_version = '1.3.2'
|
def fragment_version = '1.3.2'
|
||||||
def arrow_version = "0.8.2"
|
def arrow_version = "0.8.2"
|
||||||
def markwon_version = '4.1.2'
|
def markwon_version = '4.1.2'
|
||||||
def big_image_viewer_version = '1.7.1'
|
def big_image_viewer_version = '1.8.0'
|
||||||
def glide_version = '4.12.0'
|
def glide_version = '4.12.0'
|
||||||
def moshi_version = '1.12.0'
|
def moshi_version = '1.12.0'
|
||||||
def daggerVersion = '2.34'
|
def daggerVersion = '2.34.1'
|
||||||
def autofill_version = "1.1.0"
|
def autofill_version = "1.1.0"
|
||||||
def work_version = '2.5.0'
|
def work_version = '2.5.0'
|
||||||
def arch_version = '2.1.0'
|
def arch_version = '2.1.0'
|
||||||
@ -388,7 +388,7 @@ dependencies {
|
|||||||
implementation 'androidx.browser:browser:1.3.0'
|
implementation 'androidx.browser:browser:1.3.0'
|
||||||
|
|
||||||
// Passphrase strength helper
|
// Passphrase strength helper
|
||||||
implementation 'com.nulab-inc:zxcvbn:1.4.0'
|
implementation 'com.nulab-inc:zxcvbn:1.4.1'
|
||||||
|
|
||||||
//Alerter
|
//Alerter
|
||||||
implementation 'com.tapadoo.android:alerter:7.0.1'
|
implementation 'com.tapadoo.android:alerter:7.0.1'
|
||||||
|
@ -39,6 +39,8 @@ class VectorConfiguration @Inject constructor(private val context: Context) {
|
|||||||
Timber.v("## onConfigurationChanged(): restore the expected value ${VectorLocale.applicationLocale}")
|
Timber.v("## onConfigurationChanged(): restore the expected value ${VectorLocale.applicationLocale}")
|
||||||
Locale.setDefault(VectorLocale.applicationLocale)
|
Locale.setDefault(VectorLocale.applicationLocale)
|
||||||
}
|
}
|
||||||
|
// Night mode may have changed
|
||||||
|
ThemeUtils.init(context)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun applyToApplicationContext() {
|
fun applyToApplicationContext() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user