I need to add networking multicast entitlement to my Flutter app. At least that what I think I need to do according to this answer.
Starting from iOS 14 your app needs the Multicast networking entitlement com.apple.developer.networking.multicast to be able to send or receive IP multicast traffic.
To get the entitlement you need to apply using Apple's request form. It took me 4-5 days before I got the request approved.
Then you can follow the instructions on Apple's forums to get up and running.
Before I fill in the form, I want to know if adding the entitlement to the Runner.entitlements file is enough. I have no access to XCode. (Or do I have to add them to Info.plist?)
Thank you.