This adds a required scope so that Android Studio can query warehouse for the proper git remote url to use.
automerge: 94135a6

* commit '94135a607b751a02cae2d678c305786df978959f':
  This adds a required scope so that Android Studio can query warehouse for the proper git remote url to use.
diff --git a/src/com/google/gct/login/OAuthScopeRegistry.java b/src/com/google/gct/login/OAuthScopeRegistry.java
index 31f96c7..82fee39 100644
--- a/src/com/google/gct/login/OAuthScopeRegistry.java
+++ b/src/com/google/gct/login/OAuthScopeRegistry.java
@@ -32,6 +32,7 @@
     scopes.add("https://www.googleapis.com/auth/userinfo#email");
     scopes.add("https://www.googleapis.com/auth/appengine.admin");
     scopes.add("https://www.googleapis.com/auth/cloud-platform");
+    scopes.add("https://www.googleapis.com/auth/projecthosting");
     SCOPES = Collections.unmodifiableSortedSet(scopes);
   }