Changing Settings at Runtime

(Optional) Update application settings (client and the SAP Mobile Platform Server) using OData SDK.

Download Customization Resource Bundles

(Optional) Download customization resource bundles as defined in SAP Mobile Platform Server using the following example code:

//use the clientConnection object initialized in the “Initializing An Application -> Creating and Initializing the Client Connection” section.
AppSettings appSettings = new AppSettings(clientConnection); 
byte[] customizationResourceBundle = appSettings.getCustomizationResourceBundle("<resourcebundlename>:<version>");

Retrieve Push Endpoint

(Optional) Retrieve the push endpoint URL to register for push notification using the following example code:
String PushEndPoint = appSettings.getPushEndPoint();