W/GooglePlayServicesUtil: Google Play services out of date. Requires 8298000 but found 8107534

我是研究僧i 提交于 2019-12-02 05:12:57

Google Play Services is not going to be bundled with your app so what you are seeing is that your watch is using version 8.1 of the Play Services (which is installed on your watch) and you compiled your app with a higher version and that is not going to work; the version installed on your watch should always be bigger than or equal to the version you compiled your app with (same is true for your phone)

Piyush Gupta

Change this statement

compile 'com.google.android.gms:play-services-wearable:8.3.0'

to

compile 'com.google.android.gms:play-services-wearable:7.8.99'

My solution was to upgrade Android Wear Smart Watch on my emulator

First, I noticed my Google Play services on the emulator was out of date.

Go to play store, and click the top menu:

Find Android Wear Smart Watch, and update it.

After that, my Google play services is up-to-date.

Google on your handset device "Download Google play services" Will open your app store and then click on update. That should do it.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!