升级登录SDK版本、降低material版本为1.6.1(避免转apks失败)

This commit is contained in:
max
2024-04-01 14:42:36 +08:00
parent 6e3c23b064
commit e9dbdb3637
2 changed files with 5 additions and 2 deletions

View File

@@ -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'

View File

@@ -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'