无法在Android Studio中使用Google Play服务库

时间:2013-05-19 20:37:33

标签: android-studio google-play-services

转移到Android Studio,我无法再添加和使用Google Play服务库。

我创建了一个简单的项目,我将库添加为模块,我的布局中的登录按钮但是当我因为ClassNotFoundException运行应用程序崩溃时...

有同样问题的人吗?

1 个答案:

答案 0 :(得分:0)

两年后,我创建了这个问题,关于Android Studio以及使用Google Play Services library需要做些什么已经发生了很多变化。 我想我可以自己回答报告官方文档的重要步骤,可以在这里找到:https://developers.google.com/android/guides/setup

我还假设您已安装了Android Studio的最新版本及最新版本SDK Tools

所以这是程序:

1 - 从SDK Manager添加所需的SDK包:

  • Google Repository
  • Google Play服务

官方文档可在此处找到:https://developer.android.com/sdk/installing/adding-packages.html

2 - 打开应用程序模块目录中的build.gradle文件,并在dependencies下添加新的构建规则以获取最新版本的游戏-服务。 例如:

apply plugin: 'com.android.application'
...

dependencies {
    compile 'com.google.android.gms:play-services:7.5.0'
}

每次更新Google Play服务时,请务必更新此版本号。

3 - 保存更改并点击工具栏中的使用Gradle文件同步项目

从6.5版开始,您可以有选择地将Google Play服务API编译到您的应用中。 在官方文档中,您可以找到individual APIs的完整列表以及相应的build.gradle说明。

套餐摘要:https://developers.google.com/android/reference/com/google/android/gms/package-summary

当您创建新项目时,Android Studio还会提供Google Play服务活动模板。