Ios Custom apps and Mdm

139 Views Asked by At

I have a custom app on the app store. I will assign it to a clients apple business manager account. Does that client have the ability to be able to send configuration changes (for instance if they want to change a url that the app is connecting to) through their existing mdm to my custom app? Would there be any other setup I would have to do in my custom app besides reading the IOS userdefaults that the mdm server sets? Thanks in advance.

1

There are 1 best solutions below

0
On

If the client's MDM supports AppConfig then it can supply an XML file that contains specific settings. The contents of this XML file are merged with UserDefaults for your app on the device and your app can access them at runtime.

You need to create the logic in your app so that it uses these values when present and standard values if they are not.