into the room name list.
You can also run application from a command line to connect to the first room in a list:
diff --git a/webrtc/examples/androidapp/res/values/strings.xml b/webrtc/examples/androidapp/res/values/strings.xml
index 492c34b684..df891c77fe 100644
--- a/webrtc/examples/androidapp/res/values/strings.xml
+++ b/webrtc/examples/androidapp/res/values/strings.xml
@@ -119,7 +119,7 @@
room_server_url_preference
Room server URL.
Enter a room server URL.
- https://apprtc.appspot.com
+ https://appr.tc
displayhud_preference
Display call statistics.
diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java
index 258b22f973..502b8d049d 100644
--- a/webrtc/examples/androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java
+++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java
@@ -26,7 +26,7 @@ import org.webrtc.IceCandidate;
import org.webrtc.SessionDescription;
/**
- * Negotiates signaling for chatting with apprtc.appspot.com "rooms".
+ * Negotiates signaling for chatting with https://appr.tc "rooms".
* Uses the client<->server specifics of the apprtc AppEngine webapp.
*
* To use: create an instance of this object (registering a message handler) and
diff --git a/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java b/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java
index a56d4ea947..d13ce5a4e8 100644
--- a/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java
+++ b/webrtc/examples/androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java
@@ -23,7 +23,7 @@ import java.util.Scanner;
*/
public class AsyncHttpURLConnection {
private static final int HTTP_TIMEOUT_MS = 8000;
- private static final String HTTP_ORIGIN = "https://apprtc.appspot.com";
+ private static final String HTTP_ORIGIN = "https://appr.tc";
private final String method;
private final String url;
private final String message;