From e216f63597f4d229f56d2009e1e9caa6ae32feba Mon Sep 17 00:00:00 2001 From: Elv1zz Date: Wed, 10 Jan 2024 21:29:51 +0100 Subject: [PATCH] Using same gradle plugin as in nextcloud-library The `nextcloud-android-library` uses version `8.2.1` of the gradle plugin, so we have to use the same version for successful builds. Signed-off-by: Elv1zz --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 29a27ffa5276..ec1993ed73bf 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - androidPluginVersion = '8.2.0' + androidPluginVersion = '8.2.1' appCompatVersion = '1.6.1' jacoco_version = '0.8.10' kotlin_version = '1.8.22'