Skip to content

Commit

Permalink
Upgrade Gradle wrapper to version 8.5 (#2021)
Browse files Browse the repository at this point in the history
## Description
Dependabot does not support (yet) upgrading the Gradle wrapper thus it
needs to be updated/upgraded manually.

## Changes:
* Upgrade gradle wrapper to version `8.5`

See also: dependabot/dependabot-core#2223
  • Loading branch information
adamszewe committed Jan 10, 2024
1 parent 9a5c500 commit f647a02
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
10 changes: 10 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.gradle.configurationcache.extensions.capitalized

plugins {
id("com.android.application")
id("com.github.ben-manes.versions")
Expand Down Expand Up @@ -109,3 +111,11 @@ tasks.register<Delete>("deleteUnsupportedPlayTranslations") {
"src/main/play/listings/ta/",
)
}

project.afterEvaluate {
android.buildTypes.forEach {
tasks.named("merge${it.name.capitalized()}JniLibFolders") {
dependsOn(":syncthing:buildNative")
}
}
}
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Mon Oct 05 14:20:28 EEST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip

0 comments on commit f647a02

Please sign in to comment.