Acknowledging a similar question in the link below does anyone know how to add the information to the config.xml file in Cordova?
ITSAppUsesNonExemptEncryption export compliance while internal testing?
I need to have a true value in the plist:
ITSAppUsesNonExemptEncryption ITSEncryptionExportComplianceCode [ Key Value ]
Does anyone know the correct syntax to add this information?
I had to modify Andrej's answer a bit, this worked for me:
Note that the plugin mentioned will not work in phonegap build. The solution to make this work in phonegap build is outlined in this stackoverflow question and in this github issue: Use
in your config.xml.
Note that you MUST explicitly set platform="ios" as an attribute, even if you already have a platform block. Note that you MUST use the gap: namespace.
The following WILL NOT work as per 2016-04-08:
Neither will this one work:
This works for me (Actually I needed to put false, instead of true).
I am using
cordova 6.3.0
engineios@~4.2.0
.I hope I helped :)