我是android studio的新手,我想使用google登录凭据登录。我保留了所有必需的依赖项和compilesdkversion与19.1.0。 它显示以下错误::
Error:(78, 31) error: cannot find symbol class Builder
Error:Execution failed for task ':app:compileDebugJava'.
> Compilation failed; see the compiler error output for details.
解决此问题所需的建议。
答案 0 :(得分:1)
因为它已被弃用。此外,Android Studio中的代码引用未更新。使用Google Api客户端。请参阅here它对我有用!!
答案 1 :(得分:1)
{@ 1}}类已被弃用(虽然您不会在Android Studio上看到警告)。我尝试使用Android Studio中的PlusClient
选项创建新活动,但我得到了这个错误。我做的是将当前的Create LoginActivity
版本改为
Google play services
截至撰写时:
compile 'com.google.android.gms:play-services:6.5.87'
并重新启动了我的项目并且工作正常。强烈建议您使用 compile 'com.google.android.gms:play-services:6.1.71'
类而不是.Cheers。
答案 2 :(得分:0)
我认为您没有下载Google Play服务,如果没有,请从SDK Manager安装 - >额外 - > Google Play服务。
如果问题仍然存在,请执行
的第5步选择文件>导入> Android>现有的Android Code Into Workspace,然后单击Next。 选择浏览....输入/ extras / google / google_play_services /。 选择google-play-services_lib。单击“完成”以导入。
希望它会对你有所帮助。