├── README.md ├── plugin.xml └── package.json /README.md: -------------------------------------------------------------------------------- 1 | # iOS No Export Compliance 2 | 3 | This plugin set ITSAppUsesNonExemptEncryption to false in *-Info.plist file 4 | 5 | ## Installation 6 | 7 | `$ cordova plugin add https://github.com/mikaoelitiana/cordova-ios-plugin-no-export-compliance.git` 8 | 9 | or 10 | 11 | `$ cordova plugin add cordova-ios-plugin-no-export-compliance` 12 | -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | iOS No Export Compliance 4 | This plugin sets ITSAppUsesNonExemptEncryption to false in *-Info.plist file 5 | BSD-3 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-ios-plugin-no-export-compliance", 3 | "version": "0.0.6", 4 | "description": "This plugin sets ITSAppUsesNonExemptEncryption to false in *-Info.plist file", 5 | "cordova": { 6 | "id": "cordova-ios-plugin-no-export-compliance", 7 | "platforms": [ 8 | "ios" 9 | ] 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/mikaoelitiana/cordova-ios-plugin-no-export-compliance.git" 14 | }, 15 | "keywords": [ 16 | "ecosystem:cordova", 17 | "cordova-ios" 18 | ], 19 | "engines": [ 20 | { 21 | "name": "cordova", 22 | "version": ">=3.0.0" 23 | } 24 | ], 25 | "author": "mikaoelitiana", 26 | "license": "BSD-3-Clause", 27 | "bugs": { 28 | "url": "https://github.com/mikaoelitiana/cordova-ios-plugin-no-export-compliance/issues" 29 | }, 30 | "homepage": "https://github.com/mikaoelitiana/cordova-ios-plugin-no-export-compliance#readme" 31 | } 32 | --------------------------------------------------------------------------------