Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Commit f647a02

Browse files
authored
Upgrade Gradle wrapper to version 8.5 (#2021)
## 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
1 parent 9a5c500 commit f647a02

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

app/build.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.gradle.configurationcache.extensions.capitalized
2+
13
plugins {
24
id("com.android.application")
35
id("com.github.ben-manes.versions")
@@ -109,3 +111,11 @@ tasks.register<Delete>("deleteUnsupportedPlayTranslations") {
109111
"src/main/play/listings/ta/",
110112
)
111113
}
114+
115+
project.afterEvaluate {
116+
android.buildTypes.forEach {
117+
tasks.named("merge${it.name.capitalized()}JniLibFolders") {
118+
dependsOn(":syncthing:buildNative")
119+
}
120+
}
121+
}
Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Mon Oct 05 14:20:28 EEST 2020
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip

0 commit comments

Comments
 (0)