Search code examples
iosactionscript-3flashadobe-animate

Adobe Animate Missing Export Compliance ITSAppUsesNonExemptEncryption False


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.


Solution

  • 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>