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'