Skip to content

Commit

Permalink
deprecate useBrowser and useFullscreen setters
Browse files Browse the repository at this point in the history
  • Loading branch information
lbalmaceda committed Oct 14, 2016
1 parent 078f3e1 commit 5f561fb
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ public static class Builder {
*
* @param useBrowser if the authentication is handled in a Browser.
* @return the current builder instance
* @deprecated This method has been deprecated since Google is no longer supporting WebViews to perform login.
*/
@Deprecated
public Builder useBrowser(boolean useBrowser) {
this.useBrowser = useBrowser;
return this;
Expand All @@ -138,7 +140,9 @@ public Builder useBrowser(boolean useBrowser) {
*
* @param useFullscreen if the activity should be fullscreen or not.
* @return the current builder instance
* @deprecated This method has been deprecated since it's only applied to WebView authentication and Google is no longer supporting them to perform login.
*/
@Deprecated
public Builder useFullscreen(boolean useFullscreen) {
this.useFullscreen = useFullscreen;
return this;
Expand Down

0 comments on commit 5f561fb

Please sign in to comment.