作者:不想不知痛_378 | 来源:互联网 | 2023-05-16 05:53
1> Pavel Dudka..:
GooglePlayServicesClient
class已经被弃用了一段时间.有了最新的GooglePlayServices版本,我相信他们完全摆脱了它.
但是,AndroidStudio中的演示项目仍然使用旧的API,所以它不会编译:(
从本质上讲,与GooglePlayServices交谈时,您应该立即使用GoogleApiClient(如此处所述https://developer.android.com/google/auth/api-client.html)
就像是:
GoogleApiClient googleApiClient = new GoogleApiClient.Builder(this)
.addApi(Plus.API)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();
................
googleApiClient.connect();
为Android开发非常糟糕.我必须每隔几个月重写一次我正在处理的项目,因为IDE和SDK的更改完全破坏了一切.已经在我的项目上再坐了5个小时,尝试使用更新的IDE再次编译它.我非常期待iphone的实现