From 765ccc92502d92371e3e868c395cc349d76f46a5 Mon Sep 17 00:00:00 2001 From: Michachatz <121869403+Michatec@users.noreply.github.com> Date: Tue, 24 Mar 2026 07:41:22 +0100 Subject: [PATCH] Add JitPack repository configuration Add JitPack repository to all projects. --- build.gradle | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 803da87..71785b3 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,11 @@ // 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 @@ -8,4 +14,4 @@ plugins { tasks.register('clean', Delete) { delete rootProject.buildDir() -} \ No newline at end of file +}