From 6c095d7a0fad486851eced85f03413b11dc1480d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kalle=20Lindstr=C3=B6m?= Date: Fri, 20 Dec 2024 14:47:18 +0100 Subject: [PATCH] Remove ALWAYS_SHOW_CHANGELOG --- android/BuildInstructions.md | 7 ------- android/app/build.gradle.kts | 6 ------ 2 files changed, 13 deletions(-) diff --git a/android/BuildInstructions.md b/android/BuildInstructions.md index c80214f01395..7440f909aa97 100644 --- a/android/BuildInstructions.md +++ b/android/BuildInstructions.md @@ -219,13 +219,6 @@ rm ./gradle/verification-metadata.xml ## Gradle properties Some gradle properties can be set to simplify development. These are listed below. -### Always show changelog -For development purposes, `ALWAYS_SHOW_CHANGELOG` can be set in `local.properties` to always show -the changelog dialog on each app start. For example: -``` -ALWAYS_SHOW_CHANGELOG=true -``` - ### Override version code and version name To avoid or override the rust based version generation, the `OVERRIDE_VERSION_CODE` and `OVERRIDE_VERSION_NAME` properties can be set in `local.properties`. For example: diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 5fed7575d420..895c3ff65714 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -182,12 +182,6 @@ android { } applicationVariants.configureEach { - val alwaysShowChangelog = - gradleLocalProperties(rootProject.projectDir, providers) - .getProperty("ALWAYS_SHOW_CHANGELOG") ?: "false" - - buildConfigField("boolean", "ALWAYS_SHOW_CHANGELOG", alwaysShowChangelog) - val enableInAppVersionNotifications = gradleLocalProperties(rootProject.projectDir, providers) .getProperty("ENABLE_IN_APP_VERSION_NOTIFICATIONS") ?: "true"