简体   繁体   English

Android Studio Gradle:错误:任务“:app:processDebugGoogleServices”的执行失败。 > 没有找到与包裹匹配的客户端

[英]Android Studio Gradle: Error:Execution failed for task ':app:processDebugGoogleServices'. > No matching client found for package

I am trying to upgrade my google play services dependencies to 8.4.0 by following the example Google gives here , but I am getting the following error ('com.example.exampleapp' is a replacement for my app package name):我正在尝试按照 Google 在此处提供的示例将我的 google play 服务依赖项升级到 8.4.0,但出现以下错误(“com.example.exampleapp”是我的应用程序包名称的替代):

Error:Execution failed for task ':app:processDebugGoogleServices'.
> No matching client found for package name 'com.example.exampleapp'

Project build.gradle:项目 build.gradle:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
        classpath 'com.google.gms:google-services:2.0.0-alpha3'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

Module app/build.gradle:模块 app/build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.example.exampleapp"
        minSdkVersion 19
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    useLibrary 'org.apache.http.legacy'

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.google.android.exoplayer:exoplayer:r1.5.2'
    compile 'com.google.android.gms:play-services-auth:8.4.0'
    compile 'com.google.android.gms:play-services-maps:8.4.0'
    compile('com.mapbox.mapboxsdk:mapbox-android-sdk:3.0.0@aar') {
        transitive = true
    }
    compile files('libs/commons-lang3-3.3.2.jar')
}

apply plugin: 'com.google.gms.google-services'

gradle-wrapper.properties: gradle-wrapper.properties:

#Fri Jan 01 08:23:56 CST 2016
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip

Any ideas as to why gradle can't recognize my own app package name?关于为什么 gradle 无法识别我自己的应用程序包名称的任何想法?


EDIT:编辑:

Ok, I'm getting different errors this time.好的,这次我遇到了不同的错误。

Based on the link Shawn Thye provided, I added this to the bottom of app/build.gradle:根据 Shawn Thye 提供的链接,我将其添加到 app/build.gradle 的底部:

apply plugin: 'com.google.gms.google-services'

and leaving everything else what I listed previously I got this error:并留下我之前列出的所有其他内容,我收到了这个错误:

Information:Gradle tasks [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources, :app:compileDebugSources, :app:compileDebugAndroidTestSources]
/Users/user/Documents/AndroidStudio/ExampleApp/app/build.gradle
Error:(1, 1) A problem occurred evaluating project ':app'.
> Failed to apply plugin [id 'com.android.application']
   > Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in /Users/user/Documents/AndroidStudio/ExampleApp/gradle/wrapper/gradle-wrapper.properties to gradle-2.10-all.zip
Information:BUILD FAILED
Information:Total time: 0.921 secs
Information:1 error
Information:0 warnings
Information:See complete output in console

and the Gradle console:和 Gradle 控制台:

Executing tasks: [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources]

Configuration on demand is an incubating feature.

FAILURE: Build failed with an exception.

* Where:
Build file '/Users/user/Documents/AndroidStudio/ExampleApp/app/build.gradle' line: 1

* What went wrong:
A problem occurred evaluating project ':app'.
> Failed to apply plugin [id 'com.android.application']
   > Gradle version 2.10 is required. Current version is 2.8. If using the gradle wrapper, try editing the distributionUrl in /Users/user/Documents/AndroidStudio/ExampleApp/gradle/wrapper/gradle-wrapper.properties to gradle-2.10-all.zip

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 1.211 secs

So, then I changed gradle-wrapper.properties as requested to "gradle-2.10-all" and got this error:所以,然后我按照要求将 gradle-wrapper.properties 更改为“gradle-2.10-all”并收到此错误:

Information:Gradle tasks [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources]
google-services plugin could not detect any version for com.google.android.gms, default version: 8.3.0 will be used.
please apply google-services plugin at the bottom of the build file.
:clean
:app:clean
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72311Library
:app:prepareComAndroidSupportCardviewV72311Library
:app:prepareComAndroidSupportDesign2311Library
:app:prepareComAndroidSupportGridlayoutV72311Library
:app:prepareComAndroidSupportRecyclerviewV72311Library
:app:prepareComAndroidSupportSupportV42311Library
:app:prepareComDigitsSdkAndroidDigits192Library
:app:prepareComFacebookAndroidFacebookAndroidSdk470Library
:app:prepareComGoogleAndroidExoplayerExoplayerR152Library
:app:prepareComGoogleAndroidGmsPlayServicesAuth840Library
:app:prepareComGoogleAndroidGmsPlayServicesBase840Library
:app:prepareComGoogleAndroidGmsPlayServicesBasement840Library
:app:prepareComGoogleAndroidGmsPlayServicesMaps840Library
:app:prepareComGoogleAndroidGmsPlayServicesMeasurement830Library
:app:prepareComMapboxMapboxsdkMapboxAndroidSdk230Library
:app:prepareComTwitterSdkAndroidTweetComposer102Library
:app:prepareComTwitterSdkAndroidTweetUi180Library
:app:prepareComTwitterSdkAndroidTwitter1110Library
:app:prepareComTwitterSdkAndroidTwitterCore162Library
:app:prepareIoFabricSdkAndroidFabric1310Library
:app:prepareDebugDependencies
:app:compileDebugAidl
:app:compileDebugRenderscript
:app:generateDebugBuildConfig
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets
:app:processDebugManifest
:app:fabricGenerateResourcesDebug
:app:generateDebugResValues UP-TO-DATE
:app:processDebugGoogleServices
Found com.google.android.gms:play-services-auth:8.4.0, but version 8.3.0 is needed for the google-services plugin.
Found com.google.android.gms:play-services-maps:8.4.0, but version 8.3.0 is needed for the google-services plugin.
:app:processDebugGoogleServices FAILED
Error:Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 8.3.0.
Information:BUILD FAILED
Information:Total time: 5.724 secs
Information:1 error
Information:0 warnings
Information:See complete output in console

And the Gradle console:和 Gradle 控制台:

Executing tasks: [clean, :app:generateDebugSources, :app:generateDebugAndroidTestSources]

Configuration on demand is an incubating feature.
google-services plugin could not detect any version for com.google.android.gms, default version: 8.3.0 will be used.
please apply google-services plugin at the bottom of the build file.
Incremental java compilation is an incubating feature.
:clean
:app:clean
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72311Library
:app:prepareComAndroidSupportCardviewV72311Library
:app:prepareComAndroidSupportDesign2311Library
:app:prepareComAndroidSupportGridlayoutV72311Library
:app:prepareComAndroidSupportRecyclerviewV72311Library
:app:prepareComAndroidSupportSupportV42311Library
:app:prepareComDigitsSdkAndroidDigits192Library
:app:prepareComFacebookAndroidFacebookAndroidSdk470Library
:app:prepareComGoogleAndroidExoplayerExoplayerR152Library
:app:prepareComGoogleAndroidGmsPlayServicesAuth840Library
:app:prepareComGoogleAndroidGmsPlayServicesBase840Library
:app:prepareComGoogleAndroidGmsPlayServicesBasement840Library
:app:prepareComGoogleAndroidGmsPlayServicesMaps840Library
:app:prepareComGoogleAndroidGmsPlayServicesMeasurement830Library
:app:prepareComMapboxMapboxsdkMapboxAndroidSdk230Library
:app:prepareComTwitterSdkAndroidTweetComposer102Library
:app:prepareComTwitterSdkAndroidTweetUi180Library
:app:prepareComTwitterSdkAndroidTwitter1110Library
:app:prepareComTwitterSdkAndroidTwitterCore162Library
:app:prepareIoFabricSdkAndroidFabric1310Library
:app:prepareDebugDependencies
:app:compileDebugAidl
:app:compileDebugRenderscript
:app:generateDebugBuildConfig
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets
:app:processDebugManifest
:app:fabricGenerateResourcesDebug
:app:generateDebugResValues UP-TO-DATE
:app:processDebugGoogleServices
Found com.google.android.gms:play-services-auth:8.4.0, but version 8.3.0 is needed for the google-services plugin.
Found com.google.android.gms:play-services-maps:8.4.0, but version 8.3.0 is needed for the google-services plugin.
:app:processDebugGoogleServices FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:processDebugGoogleServices'.
> Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 8.3.0.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 5.724 secs

It's asking for the google-services plugin at the bottom of the build file, which it is already, and it's asking me to run 8.3.0 again... which I will do since that's the only thing working right now...它要求在构建文件底部的 google-services 插件,它已经是,它要求我再次运行 8.3.0 ......我会这样做,因为这是现在唯一可以工作的......

"client": [
{
  "client_info": {
    "mobilesdk_app_id": "9:99999999:android:9ccdbb6c1ae659b8",
    "android_client_info": {
      "package_name": "[packagename]"
    }
  }

package_name must match what's in your manifest file. package_name必须与清单文件中的内容相匹配。 you can find the google-services.json file if you look in the example photo below.如果您查看下面的示例照片,您可以找到google-services.json文件。

在此处输入图片说明

Simple and easy .简单易行 In my case it solved by as below在我的情况下,它解决了如下

在此处输入图片说明

Make sure your pakage name in mainifests file same as your gradle's applicationId.确保您在 mainifests 文件中的包名称与您的 gradle 的 applicationId 相同。

Happened to me when switching flavors.切换口味时发生在我身上。

Now you can also use the google-services.json with different flavors.现在您还可以使用不同风格的google-services.json

See https://stackoverflow.com/a/34364376/570168https://stackoverflow.com/a/34364376/570168

Solved the problem of getting an exception解决了获取异常的问题

java.lang.IllegalStateException: Default FirebaseApp is not initialized in this process Make sure to call FirebaseApp.initializeApp(Context) first. java.lang.IllegalStateException:在此过程中未初始化默认 FirebaseApp 确保首先调用 FirebaseApp.initializeApp(Context)。

in FirebaseInstanceId.getInstance().getToken()在 FirebaseInstanceId.getInstance().getToken()

Check that package_name exactly matches applicationId 1) build.gradle检查package_name 是否applicationId完全匹配 1) build.gradle

defaultConfig {
        applicationId "build.gradle.exactly.matches.json"
...
}

should exactly match 2) google-services.json应该完全匹配 2) google-services.json

{
      "client_info": {
        "mobilesdk_app_id": "xxxxxxxxxxxxxxxxxxxxxxxxxx",
        "android_client_info": {
          "package_name": "build.gradle.exactly.matches.json"
        ....

This exact same error happened to me only when I tried to build my debug build type.仅当我尝试构建调试构建类型时,才发生完全相同的错误。 The way I solved it was to change my google-services.json for my debug build type.我解决它的方法是将我的google-services.json更改为我的调试构建类型。 My original field had a field called client_id and the value was android:com.example.exampleapp , and I just deleted the android: prefix and leave as com.example.exampleapp and after that my gradle build was successful.我的原始字段有一个名为client_id的字段,其值为android:com.example.exampleapp ,我刚刚删除了android:前缀并保留为com.example.exampleapp ,之后我的 gradle 构建成功。

Hope it helps!希望能帮助到你!

EDIT编辑

I've just added back the android: prefix in my google-services.json and it continued to work correctly.我刚刚在google-services.json重新添加了android:前缀,它继续正常工作。 Not sure what happened exactly but I was able to solve my problem with the solution mentioned above.不确定到底发生了什么,但我能够用上面提到的解决方案解决我的问题。

For fixing:用于固定:

No matching client found for package name 'com.example.exampleapp:找不到与包名称“com.example.exampleapp”匹配的客户端:

You should get a valid google-service.json file for your package from here你应该从这里为你的包获得一个有效的google-service.json文件

For fixing:用于固定:

Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/ ) or updating the version of com.google.android.gms to 8.3.0.:请通过更新 google-services 插件的版本来修复版本冲突(有关最新版本的信息可在https://bintray.com/android/android-tools/com.google.gms.google-services/ 获得)或将 com.google.android.gms 的版本更新为 8.3.0.:

You should move apply plugin: 'com.google.gms.google-services' to the end of your app gradle.build file.您应该将apply plugin: 'com.google.gms.google-services'到应用gradle.build文件的末尾。 Something like this:像这样的东西:

dependencies {
    ...
}
apply plugin: 'com.google.gms.google-services'

I meet the problem when using Firebase, i think different package cause the problem.我在使用 Firebase 时遇到了这个问题,我认为是不同的包导致了这个问题。

I solved by adding packeage of new app within Firebase Console, and download google-services.json again.我通过在 Firebase 控制台中添加新应用程序包来解决,并再次下载 google-services.json。 在此处输入图片说明 在此处输入图片说明 在此处输入图片说明 在此处输入图片说明

Open google-services.json in android studio we can see a json object, and contain following items in 'client' jsonarray在 android studio 中打开 google-services.json 我们可以看到一个 json 对象,并且在 'client' jsonarray 中包含以下项目

"client_id": "android:your package name", "package_name": "your package name", "client_id": "android:你的包名", "package_name": "你的包名",

Please verify your package and proceed.请验证您的包裹并继续。

I found success using this configuration:我发现使用此配置成功:

classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.google.gms:google-services:2.0.0-alpha3'
//or use
//classpath 'com.android.tools.build:gradle:2.0.0-alpha6'

and

distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip

using 8.40 Google Play services.使用 8.40 Google Play 服务。 Alpha5 & Alpha6 gave the same 2.8 error you had, regardless of the distributionUrl being 2.10 Alpha5 和 Alpha6 给出了与您相同的 2.8 错误,无论 distributionUrl 为 2.10

This happened to me when my package name wasn't represented in the google-services.json file I downloaded.当我下载的 google-services.json 文件中没有表示我的包名称时,这发生在我身上。 Open your google-services.json file and make sure there is a client_info object that has a package name that corresponds to your manifests package name.打开您的 google-services.json 文件并确保有一个 client_info 对象的包名称与您的清单包名称相对应。

In googleservices.json:在 googleservices.json 中:

"client": [
  {
    "client_info": {
    "mobilesdk_app_id": "my-app-id",
    "android_client_info": {
      "package_name": "com.me.android.test.myapp"
  }

and in your manifest:并在您的清单中:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.me.android.test.myapp" >

You may need to recreate a new google-services.json for your project, which you can create here: https://developers.google.com/mobile/add?platform=android&cntapi=gcm您可能需要为您的项目重新创建一个新的 google-services.json,您可以在此处创建: https : //developers.google.com/mobile/add?platform=android&cntapi=gcm

您的google-services.json包名称必须与您的build.gradle applicationId 匹配(applicationId“您的包名称”)

If this happened to you after renaming your application package name , then you need to update the following:如果在重命名应用程序包名称后发生这种情况,则需要更新以下内容:

1) google-services.json file in your application by looking up in the file for "package_name" attribute and update it with the new package name. 1) 在您的应用程序中查找google-services.json文件,方法是在文件中查找“package_name”属性并使用新的包名称更新它。

2)Update your application client Credentials in Google Developers Console by going to the Credentials and selecting your android client key then update the package name as well with the new one. 2) 在Google Developers Console 中更新您的应用程序客户端凭据,方法是转到Credentials并选择您的 android 客户端密钥,然后使用新的包名称更新包名称。

Hope this will help.希望这会有所帮助。

检查,在您的“google-services.json”文件中,您的 package_name 是否可用

i had the same problem and just easy solve it make sure the package name for package in mainfest tag inside manifest.xml file and the applicationId in application tag inside gradle app level file has the same package name我有同样的问题,只是简单地解决它确保 manifest.xml 文件中 mainfest 标签中的包的包名称和 gradle 应用程序级别文件中的应用程序标签中的 applicationId 具有相同的包名称

in manifest.xml在 manifest.xml 中

package="com.example.work"

in gradle app level在 gradle 应用程序级别

applicationId "com.example.work"

hope it help希望它有帮助

1)check the package name is the same in google-services.json file 1) 检查 google-services.json 文件中的包名称是否相同

2)make sure that no other project exist with same package name 2)确保不存在具有相同包名的其他项目

3)make sure that there is internet access 3)确保有互联网访问

4)try syncing project and running it again 4)尝试同步项目并再次运行它

在项目gradle文件中添加这个

classpath 'com.google.gms:google-services:3.0.0'

I think because your are using play-service 8.4.0我想是因为您使用的是 play-service 8.4.0

It required它需要

classpath 'com.android.tools.build:gradle:2.0.0-alpha5'
classpath 'com.google.gms:google-services:2.0.0-alpha5'

you may also refer this .你也可以参考这个

For me, I had to check the google-services.json file and make sure "package_name" was correctly set to the package name of my android app.对我来说,我必须检查google-services.json文件并确保"package_name"正确设置为我的 android 应用程序的包名称。 The auto generated services file had .backend appended to it in my case.在我的例子中,自动生成的服务文件附加了.backend

This happened to me when my package name wasn't represented in the google-services.json file I downloaded.当我下载的 google-services.json 文件中没有表示我的包名称时,这发生在我身上。 Open your google-services.json file and make sure there is a client_info object that has a package name that corresponds to your manifests package name.打开您的 google-services.json 文件并确保有一个 client_info 对象的包名称与您的清单包名称相对应。

Make sure the package name in your project manifest is exactly the same in google-services.json file确保项目清单中的包名称与google-services.json文件中的完全相同

thanks.谢谢。

Just Android studio run 'Run as administrator' it will work只需 Android Studio 运行“以管理员身份运行”即可

Or verify your package name on google-services.json file或者在google-services.json文件中验证您的包名称

after studying above that package name in manifest file and application id in gradle build file should be same.经过上面的研究,清单文件中的包名和gradle构建文件中的应用程序ID应该相同。 my issue didn't resolved.我的问题没有解决。

Actually your application id in gradle build file should be same as your package name in google-services.json file.实际上,您在 gradle 构建文件中的应用程序 ID 应该与您在 google-services.json 文件中的包名称相同。 if your google-services.json file has different package name.如果您的 google-services.json 文件具有不同的包名称。 delete that app from google analytics or firebase console.从谷歌分析或 Firebase 控制台中删除该应用程序。 and get a new file.并获得一个新文件。

Please verify build.gradle.请验证build.gradle.

defaultConfig {
        applicationId "<packagename>"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }

Verify the package name.It can also cause error.验证包名称。它也可能导致错误。

Both times when you write the package name : 1. When you create a new project in Android Studio and 2. When you create a Configuration File两次写入包名称时: 1. 在 Android Studio 中创建新项目时和 2. 创建配置文件时

YOU should write it with lowercase letters - after changing to lowercase it works.你应该用小写字母写它 - 更改为小写后它可以工作。 If you don't want to waste time just go to you .json file and replace com.myname.MyAPPlicationnamE with com.myname.myapplicationname (for every match in the json file).如果您不想浪费时间,只需转到 .json 文件并将 com.myname.MyAPPlicationnamE 替换为 com.myname.myapplicationname(对于 json 文件中的每个匹配项)。

if you run the other type of build(for example sign apk or etc), you must select app type of build then run the projects.如果您运行其他类型的构建(例如签名 apk 等),则必须选择构建的应用程序类型,然后运行项目。

please seen the following image.请看下图。 for run this project we must select "app" in run configuration popup.为了运行这个项目,我们必须在运行配置弹出窗口中选择“app”。 在此处输入图片说明

In my case, I just had to do就我而言,我只需要做

  1. Click Build单击构建
  2. Click Make Project点击制作项目

It all then went fine.然后一切都很顺利。 I still have no clue what happened.我仍然不知道发生了什么。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 错误:任务&#39;:app:processDebugGoogleServices&#39;的执行失败。 &gt;找不到与包名称&#39;com.xx.xxx.xxxx&#39;匹配的客户端 - Error: Execution failed for task ':app:processDebugGoogleServices'. > No matching client found for package name 'com.xx.xxx.xxxx' 任务“:app:processDebugGoogleServices”执行失败。 &gt; 找不到与 package 名称“com.example.myapp”匹配的客户端 - Execution failed for task ':app:processDebugGoogleServices'. > No matching client found for package name 'com.example.myapp ' Gradle 错误:任务“:app:processDebugGoogleServices”执行失败 - Gradle Error:Execution failed for task ':app:processDebugGoogleServices' Android Studio-任务&#39;:app:processDebugGoogleServices&#39;的执行失败 - Android Studio - Execution failed for task ':app:processDebugGoogleServices' 错误:任务&#39;:app:processDebugGoogleServices&#39;的执行失败。 Android的 - Error:Execution failed for task ':app:processDebugGoogleServices'. Android 任务&#39;:app:processDebugGoogleServices&#39; Firebase&amp;Android Studio 执行失败 - Execution failed for task ':app:processDebugGoogleServices' Firebase&Android Studio 执行失败任务“:capacitor-cordova-android-plugins:processDebugGoogleServices”。 找不到匹配的客户端 package 'capacitor.android.plugins' - Execution fail task ':capacitor-cordova-android-plugins:processDebugGoogleServices'. No matching client found for package 'capacitor.android.plugins' Android Studio:添加Firebase存储后,任务“:app:processDebugGoogleServices”执行失败 - Android Studio: Execution failed for task “:app:processDebugGoogleServices” error after added Firebase Storage 错误:任务':app:processDebugGoogleServices的执行失败 - Error: Execution failed for task ': app: processDebugGoogleServices 任务&#39;:app:processReleaseGoogleServices&#39;的执行失败。 &gt;找不到包名称的匹配客户端 - Execution failed for task ':app:processReleaseGoogleServices'. > No matching client found for package name
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM