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
<gap:config-file platform="ios" parent="ITSAppUsesNonExemptEncryption" mode="add">
<false/>
</gap:config-file>
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:
<platform name="ios">
<gap:config-file parent="ITSAppUsesNonExemptEncryption" mode="add">
<false/>
</gap:config-file>
</platform>
Neither will this one work:
<config-file platform="ios" parent="ITSAppUsesNonExemptEncryption" mode="add">
<false/>
</config-file>