我正在使用 Google Play 服务修订版 5 运行我的 Android 谷歌地图应用程序,它运行良好......
我将我的 Google Play 服务从修订版 5 更新到修订版 6,现在它无法运行并产生以下警告:
Google Play services out of date. Requires 3027100 but found 3025110
知道在哪里可以找到满足要求的最新 com.google.android.gms.apk 文件吗?
我正在使用 Google Play 服务修订版 5 运行我的 Android 谷歌地图应用程序,它运行良好......
我将我的 Google Play 服务从修订版 5 更新到修订版 6,现在它无法运行并产生以下警告:
Google Play services out of date. Requires 3027100 but found 3025110
知道在哪里可以找到满足要求的最新 com.google.android.gms.apk 文件吗?
我做了同样的事情 :(
以下是如何通过回滚来解决它:卸载 Google Play Services 6 然后在此处下载 Google Play Services 5 http://venomvendor.blogspot.com/2012/03/android-sdk-extras-by-google-inc.html和把它放在 /extras/google/google-play-services 下
仅供参考,我还需要安装
adb install -r com.android.vending-1.apk
adb install -r com.google.android.gms-3025110-v3.0.25\ (583950-10).apk
让我的谷歌地图应用程序在我的模拟器上运行......
使用 Google Play Services 5 重建您的 apk。
如果您在真实设备上运行它,则需要Google play services
通过Google play store
. 这实际上应该自动完成,但您可以通过商店手动完成此过程来加快该过程。
如果您在“修改过的”AVD 上运行它(您是否Google play services
手动安装)。那么您将需要安装一组新文件。
您可以使用 adb pull,也可以使用任何类型的“终端”和“cat”命令,以及 sd 内存。
cd /data/app #or wherever..
cat com.google.android.gms-1.apk > /mnt/sdcard/GoogleSpywareBackupFile.apk
但是,您不能只使用“cat”来安装它。但是你可能已经知道了,考虑到这个问题是如何被问到的。