The following restricted capabilities require approval before you can use them in your app: runFullTrust
I am developing a desktop application with Flutter and have created an MSIX package for distribution on the Microsoft Store. However, during the review process, I was informed that I need to remove the runFullTrust capability from my MSIX package. I haven't added this capability explicitly in my Flutter configuration or my pubspec.yaml file.
My project currently uses Flutter's msix dependency (version 3.16.6) for MSIX package configuration, with the following configuration in pubspec.yaml:
msix_config:
display_name: "Display Name"
publisher_display_name: "Publisher Display Name"
identity_name: "identity.name"
publisher: "CN=*****..."
msix_version: "1.0.0.0"
logo_path: "path"
capabilities: internetClient, webcam
store: true
I need help understanding how runFullTrust is being added and how I can remove it from my application manifest file.
Thanks.