version bump to 2.11.1 + changelog
This commit is contained in:
parent
499c4ddd0a
commit
12edf12ce9
|
@ -1,5 +1,10 @@
|
|||
# Changelog
|
||||
|
||||
### Version 2.11.1
|
||||
|
||||
* Fix resend loop on servers that support only sm:2
|
||||
* Show 'Switch to video' only if other party supports video
|
||||
|
||||
### Version 2.11.0
|
||||
|
||||
* Implement Extensible SASL Profile, Bind 2.0 and Fast for faster reconnects
|
||||
|
|
10
build.gradle
10
build.gradle
|
@ -33,7 +33,7 @@ configurations {
|
|||
dependencies {
|
||||
implementation 'androidx.viewpager:viewpager:1.0.0'
|
||||
|
||||
playstoreImplementation('com.google.firebase:firebase-messaging:23.1.0') {
|
||||
playstoreImplementation('com.google.firebase:firebase-messaging:23.1.1') {
|
||||
exclude group: 'com.google.firebase', module: 'firebase-core'
|
||||
exclude group: 'com.google.firebase', module: 'firebase-analytics'
|
||||
exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
|
||||
|
@ -94,14 +94,14 @@ android {
|
|||
defaultConfig {
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 32
|
||||
versionCode 42041
|
||||
versionName "2.11.0"
|
||||
versionCode 42042
|
||||
versionName "2.11.1"
|
||||
archivesBaseName += "-$versionName"
|
||||
applicationId "eu.siacs.conversations"
|
||||
resValue "string", "applicationId", applicationId
|
||||
def appName = "Conversations"
|
||||
resValue "string", "app_name", appName
|
||||
buildConfigField "String", "APP_NAME", "\"$appName\"";
|
||||
buildConfigField "String", "APP_NAME", "\"$appName\""
|
||||
}
|
||||
|
||||
splits {
|
||||
|
@ -135,7 +135,7 @@ android {
|
|||
|
||||
def appName = "Quicksy"
|
||||
resValue "string", "app_name", appName
|
||||
buildConfigField "String", "APP_NAME", "\"$appName\"";
|
||||
buildConfigField "String", "APP_NAME", "\"$appName\""
|
||||
}
|
||||
|
||||
conversations {
|
||||
|
|
Loading…
Reference in a new issue