Google ARC 的 Play 服务 SDK 版本
Google Play Services SDK version for ARC
我们正尝试在我们的 Android-ChromeOS 应用程序中集成 Google+ 登录。在本指南 (https://developer.chrome.com/apps/arc_playservices) 中,最后一步建议降级 Google Play 服务 SDK,以便它在 ARC 中工作。我们需要降级到的 Google Play Services SDK 的确切版本是什么?
本SDK最新版本为10.2.0。我们尝试使用 9.0.0,但没有用。
问题已解决。不再显示升级提示。
必须设置以下内容
classpath 'com.google.gms:google-services:1.5.0'
以便我们可以将播放服务降级到较低版本
compile 'com.google.android.gms:play-services:8.3.0'
我们正尝试在我们的 Android-ChromeOS 应用程序中集成 Google+ 登录。在本指南 (https://developer.chrome.com/apps/arc_playservices) 中,最后一步建议降级 Google Play 服务 SDK,以便它在 ARC 中工作。我们需要降级到的 Google Play Services SDK 的确切版本是什么?
本SDK最新版本为10.2.0。我们尝试使用 9.0.0,但没有用。
问题已解决。不再显示升级提示。
必须设置以下内容
classpath 'com.google.gms:google-services:1.5.0'
以便我们可以将播放服务降级到较低版本
compile 'com.google.android.gms:play-services:8.3.0'