Customising a notarised bundle

We have been used to generate a customized installer package (actually a .zip file) on site for the customer to install. It contains non-standard information such as server URL, system name etc., which is information that is not known when we ship our code.


Now with code signing and notarization, it is not possible to modify the standard bundle. Or are there any exceptions to this rule? And if not, is there a recommended way of dealing with such issues?


Thanks in advance!


Regards

Claus Moltke-Leth

Replies

Don't modify the bundle. Store such data in preferences or Application Support. If you want to be really clever, you can setup a web service that will provide this data. Then your app can request this information at first launch. If you need to support 100 additional clients, you only need one app.

Thank you very much!