我尝试将我的android-application集成到g +中。我尝试添加PlusClient来初始化它。但AndroidStudio说:Cannot resolve PlusClient
。
我添加了这些import-header:
import com.google.android.gms.plus.Plus;
另外,我尝试添加这些import-header:
import com.google.android.gms.plus.PlusClient;
但在PlusClient
之后,AndroidStudio无法找到.plus.
我正在使用22 api。
怎么解决? Api是否仍然支持PlusClient? Plus和PlusClient之间是否有任何差异?
答案 0 :(得分:1)
我认为您应该将您的Google Play服务更新到23版。您应该将google play服务作为库项目添加到您的项目中
答案 1 :(得分:1)
类PlusClient
不在Android文档中,因此它可能不存在。使用GoogleApiClient
GoogleApiClient client = new GoogleApiClient.Builder(this)
.addApi(Plus.API)
.addScope(Plus.SCOPE_PLUS_LOGIN)
.setAccountName("users.account.name@gmail.com")
.build();
client.connect();
答案 2 :(得分:0)
将buid工具更新为23.0.2后无法找到PlusClient,因此请改用GoogleApiClient。