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

后端 未结 25 1486
清酒与你
清酒与你 2020-12-04 11:53

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.examplea

25条回答
  •  抹茶落季
    2020-12-04 12:17

    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

    in manifest.xml

    package="com.example.work"
    

    in gradle app level

    applicationId "com.example.work"
    

    hope it help

提交回复
热议问题