Advertisement
esepich

Untitled

Mar 31st, 2015
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1.         mGoogleApiClient=new GoogleApiClient.Builder(this)//Instantiate w/ builder
  2.         .addConnectionCallbacks(this)
  3.         .addOnConnectionFailedListener(this)
  4.         .addApi(Plus.API)
  5.         .addScope(Plus.SCOPE_PLUS_LOGIN)
  6.         .addApi(Games.API)
  7.         .addScope(Games.SCOPE_GAMES)
  8.         .setViewForPopups(this.getWindow().getDecorView().findViewById(android.R.id.content))
  9.         .build();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement