From 103ae9d6a4e446d7a8a5e1ec1d9e38e7bf888c89 Mon Sep 17 00:00:00 2001 From: Re11a <2634544095@qq.com> Date: Fri, 21 Apr 2023 09:02:56 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E6=8A=A5=E9=94=99Add=20googl?= =?UTF-8?q?e=20Maven=20repository=20and=20sync=20project=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0google()=E6=94=AF=E6=8C=81=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 build.gradle diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..cdb59e3 --- /dev/null +++ b/build.gradle @@ -0,0 +1,17 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. +buildscript { + repositories { + google() + jcenter() + } + dependencies { + classpath 'com.android.tools.build:gradle:7.4.2' + } +} + +allprojects { + repositories { + google() + jcenter() + } +}