当前位置: 首页 > 知识库问答 >
问题:

口味-找不到与包名匹配的客户端[重复]

丁绪
2023-03-14

我的gradle就像bellow:

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.gms.google-services'

buildscript {
    repositories {
        mavenCentral()
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath "io.fabric.tools:gradle:1.+"
    }

}



repositories {
    mavenCentral()
    maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
    maven { url 'https://maven.fabric.io/public' }
}
android {
    compileSdkVersion 27
    buildToolsVersion '27.0.3'
    defaultConfig {
        flavorDimensions "universal"
        minSdkVersion 14
        targetSdkVersion 27
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors
            {
                universal
                        {
                            versionCode 1700
                            versionName "1.7.0"
                            applicationId "ir.me.project"

                            resValue "string", "app_name", "name"
                            resValue "string", "launcher_name", "othername"
                        }
            }

}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support:cardview-v7:27.1.1'

    implementation 'com.devbrackets.android:exomedia:2.5.6'
    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

    implementation 'com.squareup.okhttp3:okhttp:3.2.0'
    implementation 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
    implementation 'com.squareup.picasso:picasso:2.5.2'
    implementation 'com.google.firebase:firebase-messaging:10.2.1'
    implementation 'com.github.paolorotolo:appintro:4.0.0'
    implementation 'com.github.amlcurran.showcaseview:library:5.4.3'
    implementation('com.crashlytics.sdk.android:crashlytics:2.5.7@aar')
            {
                transitive = true;
            }
}

但让我大喊错误:

No matching client found for package name 'ir.me.project'

共有1个答案

燕承安
2023-03-14

再次创建google-services.json,方法是将applicationid作为包名。根据您的分级文件,您的applicationid是ir.me.project

 类似资料:
  • 上下文: 我正在尝试为我的应用程序设置Google Analytics。(具有4个自定义和多个) 当我选择时,它可以正常工作,因为它将设置为(生成时使用的包名)。但是,我的其他口味有不同的用途。 我跟着警察的向导去布置。 在中选择任何另一个生成变体(具有不同的(包名))时,我得到的错误如下: 错误:任务“:app:ProcessAllCategoriesDebugFreeGoogleService

  • 这导致我的gradle构建失败,出现“没有为包名'com.acme.foo'找到匹配的客户端”错误。 我看了这两个:没有找到匹配的客户机包名称(Google Analytics)-多个productFlavors&buildTypes和google-services.json用于不同的productFlavors 不幸的是,这两个问题都没有涉及到为特定产品风味使用不同的应用程序id的问题。我确实试

  • 再次执行项目D:\Profile\中的任务:[clean,:App:AssembleDebug] 任务:清除最新任务:App:清除任务:App:预生成最新任务:App:预调试生成最新任务:App:预调试生成最新任务:App:GenerateDebugBuildConfig任务:App:CompileDebugAIDL无源任务:App:CompileDebugrenderScript无源任务:App

  • 我把应用程序中的应用程序模块重命名为表示模块。 null 当我尝试同步gradle时,我得到错误:

  • 我正在使用 Firebase 云消息传递推送通知。 我遵循了官方网站的所有说明,并成功添加了所有要求。但是我收到错误,无法找到任何解决方案。 我的错误是: 我添加的地方google-service.json看看。 我的项目结构看起来像 我已经在依赖项中添加了: 添加的类路径: 我的基于应用程序的构建。格拉德勒 任何人都可以给我关于这个错误的解决方案?

  • 每当我尝试构建我的项目时,我总是收到这个错误: 我已经制作并重新制作了,并使用了该应用程序和包。 这是我的项目构建: 以下是我的应用程序build.gradle: 我已经按照这里的说明做了几次。我还使用了我的发行版配置,因此没有任何理由认为applicationIdSuffix应该是一个问题。还有,com.my。pacakage只是我的pacakge名字的替身。我可以做些什么来解决这个问题?