From e4a53a847f76a42058bf6af628e31d0a1c67f3f2 Mon Sep 17 00:00:00 2001 From: Hans de Zwart Date: Tue, 11 Aug 2026 20:20:40 +0200 Subject: [PATCH] Don't pin buildToolsVersion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fdroidserver forces its own build-tools version into app builds, but that rewrite only matches files ending .gradle — not .gradle.kts. So the pin would have survived onto their buildserver, and if it could not get build-tools 36.0.0 the build would fail rather than fall back. AGP picks its own default instead. Clean rebuild is unaffected: still builds, still zero permissions. Co-Authored-By: Claude Opus 5 --- android/app/build.gradle.kts | 1 - 1 file changed, 1 deletion(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 2bafd72..69abfd2 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -7,7 +7,6 @@ plugins { android { namespace = "nl.hansdezwart.bgclock" compileSdk = 36 - buildToolsVersion = "36.0.0" defaultConfig { applicationId = "nl.hansdezwart.bgclock"