I have developed a .NET MAUI iOS application and successfully created an .ipa file using a Distribution certificate and provisioning profile. However, when attempting to install the app on a physical device, I want to distribute this app on store, I encounter the following error:
"This app requires Developer Mode to run."
I have developed a .NET MAUI iOS application and successfully created an .ipa file using a Distribution certificate and provisioning profile. However, when attempting to install the app on a physical device, I want to distribute this app on store, I encounter the following error:
"This app requires Developer Mode to run."
Share Improve this question edited Mar 18 at 7:35 GainzNCode asked Mar 18 at 6:35 GainzNCodeGainzNCode 134 bronze badges1 Answer
Reset to default 1Developer Mode focuses on scenarios like performing a Build and Run in Xcode, or installing an .ipa file with Apple Configurator. In these cases, the device explicitly asks the person using it to confirm that they’re a developer, aware of the risks of installing development-signed software.
Since you use visual studio to develop and install an app, the system will confirm the app is installed by a developer.
To enable the developer mode, please open the Privacy & Security settings on the device and tap the Developer Mode option that appears under Security.
For more info, please refer to Enabling Developer Mode on a device.