1.2116 release

pull/214/head 1.2116
M66B 8 months ago
parent 5eb7883ef7
commit 64dc4cbd1d

@ -6,6 +6,11 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
### [Vallibonavenatrix](https://en.wikipedia.org/wiki/Vallibonavenatrix)
### 1.2116 - 2023-10-30
* Fixed a crash in the JSoup library on Android 7.0 and earlier
* Updated [translations](https://crowdin.com/project/open-source-email)
### 1.2115 - 2023-10-30
* Added option to disable storing invitations tentatively, see [the FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq186)

@ -3,7 +3,7 @@ apply plugin: 'com.bugsnag.android.gradle'
apply plugin: 'kotlin-android'
apply plugin: 'de.undercouch.download'
def getVersionCode = { -> return 2115 }
def getVersionCode = { -> return 2116 }
def getRevision = { -> return "a" }
def getReleaseName = { -> return "Vallibonavenatrix" }
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera
@ -86,6 +86,8 @@ android {
}
compileOptions {
// https://developer.android.com/studio/write/java8-support#groovy
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
@ -530,6 +532,9 @@ dependencies {
def canary_version = "2.12"
def ws_version = "2.14"
// https://mvnrepository.com/artifact/com.android.tools/desugar_jdk_libs?repo=google
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
// https://developer.android.com/jetpack/androidx/releases/startup
implementation "androidx.startup:startup-runtime:$startup_version"

File diff suppressed because it is too large Load Diff

@ -6,6 +6,11 @@ For support you can use [the contact form](https://contact.faircode.eu/?product=
### [Vallibonavenatrix](https://en.wikipedia.org/wiki/Vallibonavenatrix)
### 1.2116 - 2023-10-30
* Fixed a crash in the JSoup library on Android 7.0 and earlier
* Updated [translations](https://crowdin.com/project/open-source-email)
### 1.2115 - 2023-10-30
* Added option to disable storing invitations tentatively, see [the FAQ](https://github.com/M66B/FairEmail/blob/master/FAQ.md#user-content-faq186)

@ -11,7 +11,7 @@
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
org.gradle.jvmargs=-Xmx1280m
org.gradle.jvmargs=-Xmx1536m
org.gradle.warning.mode=all
android.useAndroidX=true

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save