For customers who wish to configure their data hosting region, you will need to modify your app's config.xml in order to configure the Messenger to point to your desired workspace.
This is usually present in /<YOUR_APP_DIR>/config.xml
You can add a String entry into your info.plist by adding the following to config.xml file.
<widget>
...
<config-file target="*-Info.plist" parent="IntercomRegion">
<string>EU</string> <!-- This can be US, EU or AU to point to United States, Europe, Australia regions respectively-->
</config-file>
...
</widget>The SDK will default to US servers if this parameter is not specified.
Valid options for value are
EUfor Europe regionAUfor Australia regionUSfor United States region
You can add a meta-data into AndroidManifest.xml by adding the following to config.xml file
<widget>
...
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data android:name="io.intercom.android.sdk.server.region" android:value="@integer/intercom_server_region_aus" />
</config-file>
...
</widget>The SDK will default to US servers if this parameter is not specified.
Valid options for io.intercom.android.sdk.server.region are
intercom_server_region_eufor Europe regionintercom_server_region_ausfor Australia regionintercom_server_region_usfor United States region