From e808f8335efd1f30b97be37ab41c8531c62b2834 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=88=91=E8=B5=B0=E8=B7=AF=E5=B8=A6=E7=9D=80=E9=A3=8E?= =?UTF-8?q?=E5=95=8A?= <1163989452@qq.com> Date: Mon, 4 Sep 2023 10:02:54 +0000 Subject: [PATCH] update android/build.gradle. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 我走路带着风啊 <1163989452@qq.com> --- android/build.gradle | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index c13ca0a..fe38475 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,10 +1,10 @@ group 'io.github.v7lin.weibo_kit' -version '3.0.0' +version '1.1.0' buildscript { repositories { google() - mavenCentral() + jcenter() } dependencies { @@ -15,7 +15,7 @@ buildscript { rootProject.allprojects { repositories { google() - mavenCentral() + jcenter() // 私仓 flatDir { @@ -26,6 +26,7 @@ rootProject.allprojects { apply plugin: 'com.android.library' + android { compileSdkVersion 28 @@ -53,7 +54,8 @@ android { } dependencies { - // v10.10.0 + implementation 'androidx.annotation:annotation:1.0.0' + // v9.12.0 vendorImplementation 'androidx.appcompat:appcompat:1.0.0' - vendorImplementation(name: 'openDefault-10.10.0', ext: 'aar') -} + vendorImplementation(name: 'openDefault-9.12.0', ext: 'aar') +} \ No newline at end of file -- Gitee