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

Change-Id: I631f18255942f8f0bb6e05999adb08a51dc8a1d9
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);
   }