android - 找不到包名称 'demo.abc.com.deals.debug' 的匹配客户端

标签 android build.gradle google-signin google-play-services

我正在努力使用 Android 应用程序登录谷歌。 我按照给定链接 Google Sign-In for Android 中的步骤操作我创建了 google-services.json 文件,该文件具有与 AndroidMenifest.xml 文件相同的应用程序 ID/包名称。请快速检查下面的 AndroidMenifest.xml 代码以及 google-services.json 文件。

AndroidMenifest.xml

<?xml version="1.0" encoding="utf-8"?>
        <manifest xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        package="demo.abc.com.deals">
        <uses-sdk tools:overrideLibrary="com.facebook" />
        <uses-permission android:name="android.permission.INTERNET" />
        <uses-permission  android:name="android.permission.ACCESS_NETWORK_STATE"  />
        <application
        android:name=".ParityApplication"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <meta-data
            android:name="com.facebook.sdk.ApplicationId"
            android:value="@string/facebook_app_id" />
        <activity
            android:name="com.facebook.FacebookActivity"
            android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
            />
        <activity
            android:name=".views.splash.SplashActivity"
            android:configChanges="keyboard|orientation|screenSize"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MainActivity"
            android:configChanges="keyboard|orientation|screenSize"
            android:exported="false"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden|adjustPan" />

    </application>

</manifest>

google-services.json

"client_info": {
    "mobilesdk_app_id": "1:216768689126:android:64277ad0e8ef7db8",
    "android_client_info": {
      "package_name": "demo.abc.com.deals"
    }

build.gradle

apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
    applicationId "demo.abc.com.deals"
    minSdkVersion 19
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
dataBinding {
    enabled true
}

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
repositories {
    mavenCentral()
}
buildTypes {
    debug {
        debuggable true
        applicationIdSuffix '.debug'
        buildConfigField("String", "SCHEME", "\"http:\"")
        buildConfigField("String", "AUTHORITY", "\"//139.162.46.29\"")
        buildConfigField("String", "SERVER_URL", "\"http://139.162.46.29/v3\"")
        resValue 'string', 'app_name', 'Parity-SIT'
    }
    uat.initWith(buildTypes.debug)
    uat {
        applicationIdSuffix '.uat'
        buildConfigField("String", "SCHEME", "\"http:\"")
        buildConfigField("String", "AUTHORITY", "\"//139.162.46.29\"")
        buildConfigField("String", "SERVER_URL", "\"http://139.162.46.29/v3\"")
        resValue 'string', 'app_name', 'Parity-UAT'
    }
    release {
        minifyEnabled false
        resValue 'string', 'app_name', 'Parity'
        buildConfigField("String", "SCHEME", "\"http:\"")
        buildConfigField("String", "AUTHORITY", "\"//139.162.46.29\"")
        buildConfigField("String", "SERVER_URL", "\"http://139.162.46.29/v3\"")
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:design:25.3.0'
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-annotations:25.3.0'
compile 'com.android.support:recyclerview-v7:25.3.0'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.support:support-v4:25.3.0'
compile 'com.facebook.android:facebook-android-sdk:4.18.0'
compile 'com.google.android.gms:play-services:9.0.0'
testCompile 'junit:junit:4.12'
}
apply plugin: 'me.tatarka.retrolambda'

项目级build.gradle

dependencies {
    classpath 'com.android.tools.build:gradle:2.3.3'
    classpath 'me.tatarka:gradle-retrolambda:3.6.0'
    classpath 'com.google.gms:google-services:3.0.0'

}

在所有三个文件中,包名称都是 demo.abc.com.deals 但我仍然收到此错误。

Error:Execution failed for task ':app:processDebugGoogleServices'. No matching client found for package name 'demo.abc.com.deals.debug'.

我尝试了关于 SO 上提出的同一问题的所有建议,但甚至没有一个解决方案对我有用。 我真的可以使用所有 SO 用户的建议和经验来处理这个问题。

google-services.json 文件添加目录结构

google-service.json file added under app dir.

最佳答案

最后,我在将 google 登录集成到我的应用程序时解决了这个问题, 当我尝试为我的应用设置谷歌登录时,我在应用级 build.gradle 文件中添加了 3 个构建变体。

当我为每个构建类型添加 google-services.json 时它工作正常,app/src 文件夹中应该有一致的目录。在各自的构建变体文件夹中添加 google-services.json 文件后,请检查下面的目录结构屏幕截图。

Application dir structure after changes

强制性改变

在所有 google-services.json 文件中,您应该根据构建类型指定正确的 package_name。

例如,在调试目录中它应该像 "package_name": "demo.abc.com.deals.debug"

关于android - 找不到包名称 'demo.abc.com.deals.debug' 的匹配客户端,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44780704/

相关文章:

ios - 在Ios中 react 原生Google登录问题

android - GoogleSignIn requestPermissions onActivityResult 0 与 Google Fitness 步数/距离范围

android - setupNotification 返回 "Error already connected"而没有发送连接请求

java - SuggestionListener 中的 onSuggestionClick(intposition) 给出 ArrayList 的绝对位置

android - 如何确定我的 Android 项目的 gradle 构建文件中需要哪些依赖项

android-studio - android studio Gradle启动失败,无法正常工作

google-signin - 构建具有 Google Sign 并支持 Mac 的 iOS 应用程序

android - Flutter 应用加载动态库失败

java - Android 以编程方式向应用程序添加小部件警告消息

gradle - 为什么我的大型多项目 gradle 构建启动缓慢?