google-play-services
Android Studio Gradle: Error:Execution failed for task ‘:app:processDebugGoogleServices’. > No matching client found for package
“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. you can find the google-services.json file if you look in the example photo below.
updating Google play services in Emulator
Update On 18-Dec-2017 You can update Google Play Services via the Play Store app in your emulator just as you would on a physical Android device from API 24. check Emulator new features added with stable update from Android Studio v 3.0 Google Play Support – From Google : We know that many app developers … Read more
Could not find play-services-basement.aar
jcenter() has had mirrors of some libraries (I guess they are doing intentionally) that should originally available through google() or maven() repositories. When gradle build works, for any library that is used in the project the first place to look for is the repository that is listed first in repositories {.. When the jcenter() mirror … Read more
Missing api_key/current key with Google Services 3.0.0
Generate new config file (google-services.json) from: https://developers.google.com/cloud-messaging/android/client#get-config Newly config file with “api_key”: [ { “current_key”: XXX } ] in client section Update: or manually enabled service in developer console and generate key.
com.android.build.transform.api.TransformException
Try adding multiDexEnabled true to your app build.gradle file. defaultConfig { multiDexEnabled true } EDIT: Try Steve’s answer first. In case it happens frequently or first step didn’t help multiDexEnabled might help. For those who love to dig deeper here is couple similar issues (with more answers): :app:dexDebug ExecException finished with non-zero exit value 2 … Read more
com.google.android.gms:play-services-measurement-base is being requested by various other libraries
The actual problem is discussed in the May, 23rd release note of https://developers.google.com/android/guides/releases#may_23_2018 Basically, you need to bump all Play Services and Firebase libraries to their latest version (which may be different for each since version 15). You may use https://mvnrepository.com/ to find the latest version for each library. See also: https://firebase.google.com/support/release-notes/android#20180523
Google Play Services Library update and missing symbol @integer/google_play_services_version
For everyone using Eclipse, this is how you should do it. Eclipse -> import -> existing android code -> browse -> navigate to google-play-services_lib FOLDER (android-sdk/extras/google/google_play_services/libproject). Then, on your project control click -> properties -> android -> libraries, add -> select the project you just imported -> ok
Is Google Play Store supported in avd emulators?
The Google Play Store is now officially preinstalled the Android Emulator. Make sure you are running the latest version of Android Studio 2.4. In the Android Studio AVD Manager choose a virtual device configuration that has the Google Play store icon next to it, and then select one of the system images that have the … Read more