gpt4 book ai didi

android - 更新到 com.google.gms :google-services:3. 0.0 后获取 gradle 异常

转载 作者:行者123 更新时间:2023-11-29 01:15:53 31 4
gpt4 key购买 nike

昨天,我将我的 google services gradle 插件更新为:

dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.google.gms:google-services:3.0.0'
}

在那之后,我在我的 devDebug 风格构建中遇到以下错误:

Error:org.gradle.api.GradleException: No matching client found for package name 'com.example.android.dev'

以下是我的应用级 build.gradle 文件的相关部分:

defaultConfig {
applicationId 'com.example.android'
multiDexEnabled true
minSdkVersion 16
targetSdkVersion 24
versionCode 47
versionName "1.3.2"
signingConfig signingConfigs.myConfig
renderscriptTargetApi 24
renderscriptSupportModeEnabled true
}
buildTypes {
debug {
applicationIdSuffix = ".dev"
resValue "string", "app_name", "example-debug"
}
release {
minifyEnabled false
shrinkResources false
resValue "string", "app_name", "example"
signingConfig signingConfigs.myConfig
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
dev {
// dev utilizes minSDKVersion = 21 to allow the Android gradle plugin
// to pre-dex each module and produce an APK that can be tested on
// Android Lollipop without time consuming dex merging processes.
minSdkVersion 21
}
prod {
// The actual minSdkVersion for the application.
minSdkVersion 16
}
}

此错误不会出现在我的 prodRelease 产品 flavor 构建中。我该如何解决?

最佳答案

在您的调试构建类型中,您正在使用这个包:

 debug {
applicationIdSuffix = ".dev"
}

这条消息

No matching client found for package name 'com.example.android.dev'

表示您的 google-services.json 不包含此包

请按照以下步骤操作:

  • 转到 Firebase 控制台
  • 添加另一个也注册这个包的安卓应用
  • 再次导出 google-services.json

关于android - 更新到 com.google.gms :google-services:3. 0.0 后获取 gradle 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39717616/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com