(Optional) Download customization resource bundles as defined in SAP Mobile Server
-(NSData*)getCustomizationResourceBundleWithCustomizationResource:(NSString*)
customizationResource error:(NSError**)error;
NSError* _errorWhileFetchingID = nil;
NSString *bundleId = [appSettings getConfigProperty:@"d:CustomizationBundleId"
error:&_errorWhileFetchingID];
if (!_errorWhileFetchingID)
{
NSError* _errorWhileFetchingBundle=nil;
NSData* bundle = [appSettings getCustomizationResourceBundleWithCustomizationResource:bundleId
error:&_errorWhileFetchingBundle];
}
//bundleId can be set to bundle name (fetches the specified bundle) or nil (fetches the default bundle selected)