0

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.

K-G
  • 2,799
  • 4
  • 26
  • 42
  • 1
    Well that _should_ be the correct answer as far as I can tell. Perhaps it's a bug of the specific AIR Version you're using, have you tried down/upgrading to another AIR Version? –  May 03 '18 at 20:07
  • @DodgerThud yeah that's what I thought, I'm using a "stable" version of AIR (don't really want to start changing SDK's at this point). But will check if there's anything newer stable. Cheers – K-G May 04 '18 at 07:11

1 Answers1

0

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>
K-G
  • 2,799
  • 4
  • 26
  • 42