24 lines
609 B
Groovy
24 lines
609 B
Groovy
apply from: "../module_standard.gradle"
|
|
android {
|
|
namespace 'com.example.module_google'
|
|
|
|
defaultConfig {
|
|
buildConfigField "String", "GOOGLE_APP_KEY", "\"xxx\""
|
|
buildConfigField "String", "GOOGLE_SERVER_CLIENT_ID", "\"..com\""
|
|
}
|
|
}
|
|
|
|
kapt {
|
|
arguments {
|
|
arg("AROUTER_MODULE_NAME", project.getName())
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// google登录
|
|
implementation 'com.google.android.gms:play-services-auth:20.7.0'
|
|
|
|
// googleplay内购
|
|
implementation 'com.google.android.gms:play-services-wallet:19.2.1'
|
|
implementation 'com.android.billingclient:billing:6.0.1'
|
|
} |