Is there any possibility to add a custom domain after publishing Manifest file to app store? I have a requirement, in which I have to add a new AppDomain in manifest file after publishing it to App Store.
For e.g My Manifest file contain following AppDomains
<AppDomains>
<AppDomain>https://login.windows.net</AppDomain>
<AppDomain>https://login.microsoftonline.com</AppDomain>
</AppDomains>
After publish it, I want to add one more domain e.g https://login.customdomain.com
Is it possible to add custom domains dynamically like:
<AppDomain>https://login.customdomain.com</AppDomain>
Any help on this will be appreciate!
Thanks.