From 4191b390228762682d136c0fc28d5289c03a1f80 Mon Sep 17 00:00:00 2001 From: Abdul Kaiz <136914435+AbdulKaiz-007@users.noreply.github.com> Date: Fri, 18 Oct 2024 21:10:55 +0530 Subject: [PATCH] Update build.gradle --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 4e554c8..40b4e0b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,16 +1,16 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { - jcenter() + mavenCentral() // Use Maven Central instead of JCenter } dependencies { - classpath 'com.android.tools.build:gradle:2.2.2' -// classpath 'com.google.gms:google-services:3.0.0' + classpath 'com.android.tools.build:gradle:7.4.2' // Update to a more recent version + classpath 'com.google.gms:google-services:4.3.15' // Uncomment and update if using Google services } } allprojects { repositories { - jcenter() + mavenCentral() // Use Maven Central instead of JCenter } }