From e9dbdb3637591feebe6b2f68201bc8482571f91a Mon Sep 17 00:00:00 2001 From: max Date: Mon, 1 Apr 2024 14:42:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8D=87=E7=BA=A7=E7=99=BB=E5=BD=95SDK?= =?UTF-8?q?=E7=89=88=E6=9C=AC=E3=80=81=E9=99=8D=E4=BD=8Ematerial=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E4=B8=BA1.6.1=EF=BC=88=E9=81=BF=E5=85=8D=E8=BD=ACapks?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 5 ++++- module_base.gradle | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 8e41b8e..56b5433 100644 --- a/build.gradle +++ b/build.gradle @@ -7,6 +7,9 @@ android { def gsci = project.hasProperty("GOOGLE_SERVER_CLIENT_ID") ? GOOGLE_SERVER_CLIENT_ID : "Define GOOGLE_SERVER_CLIENT_ID in gradle.properties. Or 'gradle -PGOOGLE_SERVER_CLIENT_ID=gak_value ... taskName'" + println("GOOGLE_BILLING_PUBLIC_KEY:" + gak) + println("GOOGLE_SERVER_CLIENT_ID:" + gsci) + defaultConfig { buildConfigField "String", "GOOGLE_BILLING_PUBLIC_KEY", "\"$gak\"" buildConfigField "String", "GOOGLE_SERVER_CLIENT_ID", "\"$gsci\"" @@ -21,7 +24,7 @@ kapt { dependencies { // google登录 - implementation 'com.google.android.gms:play-services-auth:20.7.0' + implementation 'com.google.android.gms:play-services-auth:21.0.0' // googleplay内购 implementation 'com.google.android.gms:play-services-wallet:19.2.1' diff --git a/module_base.gradle b/module_base.gradle index 902afce..9062e29 100644 --- a/module_base.gradle +++ b/module_base.gradle @@ -41,7 +41,7 @@ android { } dependencies { - implementation 'com.google.android.material:material:1.8.0' + implementation 'com.google.android.material:material:1.6.1' implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.appcompat:appcompat:1.6.1'