Anyone know how to remove the annoying Apple Missing Export Compliance?
I have tried adding ITSAppUsesNonExemptEncryption to the app's XML config file (name-app.xml).
<key>ITSAppUsesNonExemptEncryption</key><false/>
Has no effect.
Found a way to get it working, I moved the ITSAppUsesNonExemptEncryption Key
to the bottom of the Key
list. Inside the InfoAdditions
and seems to be working now:
<iPhone>
<InfoAdditions><![CDATA[
<!--
<key>....</key>
<key>....</key>
-->
<key>ITSAppUsesNonExemptEncryption</key><false/>
]]></InfoAdditions>
</iPhone>