Skip to content

Commit

Permalink
Remove ALWAYS_SHOW_CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
kl committed Dec 20, 2024
1 parent 16442d7 commit 6c095d7
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
7 changes: 0 additions & 7 deletions android/BuildInstructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 0 additions & 6 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 6c095d7

Please sign in to comment.