From a8f6c7f946d7fb3cfec412707e790b95b2b6649c Mon Sep 17 00:00:00 2001 From: Michachatz <121869403+Michatec@users.noreply.github.com> Date: Tue, 24 Mar 2026 07:43:30 +0100 Subject: [PATCH] Re-add allprojects block with repositories configuration --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 71785b3..d9fe2cb 100644 --- a/build.gradle +++ b/build.gradle @@ -1,17 +1,17 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. -allprojects { - repositories { - maven { url 'https://jitpack.io' } - } -} - plugins { id 'com.android.application' version '9.1.0' apply false id 'com.android.library' version '9.1.0' apply false id 'org.jetbrains.kotlin.android' version "2.3.20" apply false } +allprojects { + repositories { + maven { url 'https://jitpack.io' } + } +} + tasks.register('clean', Delete) { delete rootProject.buildDir() }