From 3b1ae5bd425d8bc13e54cfaf5c81932ea6a95bd3 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Wed, 24 Sep 2025 11:25:15 +0200 Subject: [PATCH] upgrade gradle --- android/build.gradle | 4 ++-- android/gradle/wrapper/gradle-wrapper.properties | 2 +- android/native/build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 57abd80883..03395140b2 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -16,7 +16,7 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:8.5.1' - classpath 'de.undercouch:gradle-download-task:4.1.1' + classpath 'de.undercouch:gradle-download-task:5.6.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } @@ -30,5 +30,5 @@ allprojects { } task clean(type: Delete) { - delete rootProject.buildDir + delete rootProject.layout.buildDirectory } diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index b82aa23a4f..37f853b1c8 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip networkTimeout=10000 validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME diff --git a/android/native/build.gradle b/android/native/build.gradle index b5224c6a00..91629add7b 100644 --- a/android/native/build.gradle +++ b/android/native/build.gradle @@ -68,5 +68,5 @@ if (new File(depsDir, 'armeabi-v7a').exists()) { preBuild.dependsOn getDeps clean { - delete new File(buildDir.parent, 'deps') + delete depsDir }