diff --git a/CHANGELOG.md b/CHANGELOG.md index e21ccdb63..c81144a84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,12 @@ Change Log --- ======= -### 10.0 (2020-08-03) +### 10.0 (2020-08-07) 🚧 Currently in alpha 🚧 * PRO: DAVx⁵ support (alpha requires custom DAVx⁵ build) -* PRO: EteSync client support (alpha requires custom EteSync client build) +* PRO: EteSync client support * [ToDo Agenda](https://play.google.com/store/apps/details?id=org.andstatus.todoagenda) integration * Changed backstack behavior to follow Android conventions * Major internal changes! Please report any bugs! @@ -24,7 +24,7 @@ Change Log * Dutch - @fvbommel * Finnish - J. Lavoie * French - @FlorianLeChat, J. Lavoie, @sephrat - * German - @franconian + * German - @franconian, @joshxtra * Hebrew - @yarons, @avipars * Hungarian - kaciokos * Italian - @ppasserini, J. Lavoie @@ -35,7 +35,7 @@ Change Log * Simplified Chinese - @sr093906, @cccClyde * Spanish - @FlorianLeChat * Tamil - @balogic, @Thiya-velu - * Turkish - @emintufan + * Turkish - @emintufan, Oğuz Ersen ### 9.7.3 (2020-07-07) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 116553107..e165ecb26 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -44,7 +44,7 @@ android { defaultConfig { testApplicationId = "org.tasks.test" applicationId = "org.tasks" - versionCode = 100000 + versionCode = 100002 versionName = "10.0" targetSdkVersion(Versions.targetSdk) minSdkVersion(Versions.minSdk) @@ -53,6 +53,7 @@ android { kapt { arguments { arg("room.schemaLocation", "$projectDir/schemas") + arg("room.incremental", "true") } } } @@ -86,7 +87,8 @@ android { getByName("debug") { val tasks_mapbox_key_debug: String? by project val tasks_google_key_debug: String? by project - + ext["enableCrashlytics"] = false + ext["alwaysUpdateBuildId"] = false applicationIdSuffix = ".debug" resValue("string", "mapbox_key", tasks_mapbox_key_debug ?: "") resValue("string", "google_key", tasks_google_key_debug ?: "") diff --git a/app/src/main/res/values/changelog.xml b/app/src/main/res/values/changelog.xml index 79d997ab4..2dac9c595 100644 --- a/app/src/main/res/values/changelog.xml +++ b/app/src/main/res/values/changelog.xml @@ -1,9 +1,9 @@ - 🚧 ALPHA VERSION 🚧 + 🚧 10.0 ALPHA 2 🚧 PRO: DAVx⁵ support (alpha requires custom DAVx⁵ build) - PRO: EteSync client support (alpha requires custom EteSync client build) + PRO: EteSync client support ToDo Agenda integration Changed backstack behavior to follow Android conventions Major internal changes! Please report any bugs! diff --git a/gradle.properties b/gradle.properties index e7597f0ef..b2b313b2e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,15 +1,6 @@ -## For more details on how to configure your build environment visit -# http://www.gradle.org/docs/current/userguide/build_environment.html -# -# Specifies the JVM arguments used for the daemon process. -# The setting is particularly useful for tweaking memory settings. -# Default value: -Xmx1024m -XX:MaxPermSize=256m -# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -# -# When configured, Gradle will run in incubating parallel mode. -# 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 -#Mon Jun 15 15:28:40 CDT 2020 android.enableJetifier=true android.useAndroidX=true -org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M" +org.gradle.parallel=true +org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=1024m -XX:MaxMetaspaceSize=1g -Dkotlin.daemon.jvm.options="-Xmx2g" -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 +android.databinding.incremental=true +