我尝试将我的android-application集成到g +。我尝试添加PlusClient对其进行初始化。但是AndroidStudio表示:Cannot resolve PlusClient
我添加了这些导入头:

import com.google.android.gms.plus.Plus;


另外,我尝试添加以下import-header:

import com.google.android.gms.plus.PlusClient;


但是AndroidStudio在PlusClient之后找不到.plus.
我正在使用22 API。
如何解决? Api是否仍支持PlusClient? Plus和PlusClient之间有什么区别吗?

最佳答案

PlusClient不在Android文档中,因此它可能不存在。使用GoogleApiClient

GoogleApiClient client = new GoogleApiClient.Builder(this)
     .addApi(Plus.API)
     .addScope(Plus.SCOPE_PLUS_LOGIN)
     .setAccountName("[email protected]")
     .build();
client.connect();

10-04 12:06