Java Code Examples for com.google.android.gms.common.api.GoogleApiClient#ApiOptions

The following examples show how to use com.google.android.gms.common.api.GoogleApiClient#ApiOptions . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: GameHelper.java    From google-play-game-services-ane with MIT License 4 votes vote down vote up
/** Sets the options to pass when setting up the Games API. Call before setup(). */
public void setGamesApiOptions(GoogleApiClient.ApiOptions options) {
    doApiOptionsPreCheck();
    mGamesApiOptions = options;
}
 
Example 2
Source File: GameHelper.java    From google-play-game-services-ane with MIT License 4 votes vote down vote up
/** Sets the options to pass when setting up the AppState API. Call before setup(). */
public void setAppStateApiOptions(GoogleApiClient.ApiOptions options) {
    doApiOptionsPreCheck();
    mAppStateApiOptions = options;
}
 
Example 3
Source File: GameHelper.java    From google-play-game-services-ane with MIT License 4 votes vote down vote up
/** Sets the options to pass when setting up the Plus API. Call before setup(). */
public void setPlusApiOptions(GoogleApiClient.ApiOptions options) {
    doApiOptionsPreCheck();
    mPlusApiOptions = options;
}