I do not get update com.google.android.gms: play-services-wallet: 8.4.0 for google play services in sdk

I have completely updated my Android SDK, but I do not get an update for Google Play services version 8.4.0, that is, "com.google.android.gms: play-services-wallet: 8.4.0", as indicated in the link for Android implementation Pay https://developers.google.com/android-pay/android/tutorial .

Whenever I add this line: "compile" com.google.android.gms: play-services-wallet: 8.4.0 "in build.gradle, I get the following error: Unable to resolve: com.google.android. gms: docking services wallet: 8.4.0

+7
android google-play-services gradle android-pay
source share
4 answers

This issue has been fixed after installing all the latest build tools and other updates. Now I have received updates to this library and its performance.

-one
source share

After detecting an error, you will be presented with three options for Android Studio

Install repository and synchronization project

Show in file

Show in the Project Structure dialog box

You just need to click " Install Repository and Sync Project ". After that, it worked great for me.

+6
source share

That didn't work either. I guess it was not yet available.

But for me the following implementation now works:

apply plugin: 'com.android.application' ... dependencies { compile 'com.google.android.gms:play-services-wallet:8.4.0' } 
+1
source share

I am currently trying to create an application using Android Studio and had the same problem. Allowed it by running Android Studio as an administrator on my Windows machine and allowing gradle to re-sync (just rebuild the project).

hope someone finds this useful .;)

0
source share

All Articles