I am working esim feature of Ios. I edited plugin.xml as below:
<config-file target="*-Info.plist" parent="com.apple.security.network.server">
<true />
</config-file>
<config-file target="*-Info.plist" parent="com.apple.security.network.client">
<config-file target="*-Info.plist" parent="com.apple.CommCenter.fine-grained">
<string>public-cellular-plan</string>
<config-file target="*-Info.plist" parent="CarrierDescriptors">
<array>
<dict>
<key>MCC</key>
<string>525</string>
<key>MNC</key>
<string>05</string>
</dict>
</array>
<config-file target="*-Info.plist" parent="com.apple.wlan.authentication">
<config-file target="*-Info.plist" parent="keychain-access-groups">
<string>apple</string>
<string>com.apple.identities</string>
<string>com.apple.certificates</string>
<config-file target="*-Info.plist" parent="com.apple.private.system-keychain">
But when I generate the app I faced an issue: "Provisioning profile "ABC" for "XYZ" contains entitlements that aren't in the entitlements file: com.apple.CommCenter.fine-grained. To use these entitlements, add them to your entitlements file. Otherwise, remove unused entitlements from your provisioning profile. (in target 'XYZ' from project 'XYZ')** ARCHIVE FAILED **"
How can I add the entitlements file in this plugin?