diff --git a/api/com/parse/Parse.Configuration.Builder.html b/api/com/parse/Parse.Configuration.Builder.html index 5f96745c1..7ad8900d2 100644 --- a/api/com/parse/Parse.Configuration.Builder.html +++ b/api/com/parse/Parse.Configuration.Builder.html @@ -210,7 +210,7 @@

Parse.Configuration.Builder

initialization.

- You may define com.parse.APPLICATION_ID and com.parse.CLIENT_KEY + You may define com.parse.SERVER_URL, com.parse.APPLICATION_ID and (optional) com.parse.CLIENT_KEY meta-data in your AndroidManifest.xml:

  <manifest ...>
@@ -218,6 +218,9 @@ 

Parse.Configuration.Builder

... <application ...> + <meta-data + android:name="com.parse.SERVER_URL" + android:value="@string/parse_server_url" /> <meta-data android:name="com.parse.APPLICATION_ID" android:value="@string/parse_app_id" /> @@ -232,7 +235,7 @@

Parse.Configuration.Builder

- This will cause the values for applicationId and clientKey to be set to + This will cause the values for server, applicationId and clientKey to be set to those defined in your manifest.

Parameters:
context - The active Context for your application. Cannot be null.
diff --git a/api/com/parse/Parse.html b/api/com/parse/Parse.html index e25712102..685192038 100644 --- a/api/com/parse/Parse.html +++ b/api/com/parse/Parse.html @@ -346,7 +346,7 @@

initialize

public static void initialize(Context context)
Authenticates this client as belonging to your application.

- You must define com.parse.APPLICATION_ID and com.parse.CLIENT_KEY + You may define com.parse.SERVER_URL, com.parse.APPLICATION_ID and (optional) com.parse.CLIENT_KEY meta-data in your AndroidManifest.xml:

  <manifest ...>
@@ -354,6 +354,9 @@ 

initialize

... <application ...> + <meta-data + android:name="com.parse.SERVER_URL" + android:value="@string/parse_server_url" /> <meta-data android:name="com.parse.APPLICATION_ID" android:value="@string/parse_app_id" />