| java.lang.Object | |
| ↳ | com.google.android.gms.plus.PlusClient.Builder |
Builder to create a PlusClient to connect to Google Play services.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Builder to help construct the
PlusClient object. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Removes all OAuth 2.0 scopes requested by your app.
| |||||||||||
Specify an account name on the device that should be used.
| |||||||||||
Specify the OAuth 2.0 scopes requested by your app.
| |||||||||||
Specify which user's app activity types can be written to Google.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||||||||||||||||||||||||
Builder to help construct the PlusClient object.
| context | The context to use for the connection. |
|---|---|
| connectionCallbacks | The listener where the results of the
asynchronous connect() call are delivered. |
| connectionFailedListener | The listener which will be notified if the connection attempt fails. |
Specify an account name on the device that should be used.
If an account name is not specified, DEFAULT_ACCOUNT will be used.
| accountName | The account name on the device that should be used by
PlusClient.
|
|---|
Specify which user's app activity types can be written to Google.
This must be used with the PLUS_LOGIN OAuth 2.0 scope.
See Types of app activityfor the full list of valid app activity types. Example usage:
plusClientBuilder.setVisibleActivities(
"http://schemas.google.com/AddActivity",
"http://schemas.google.com/BuyActivity");
| visibleActivities | The user's app activity types that can be written to Google. |
|---|