diff --git a/src/@ionic-native/plugins/card-io/index.ts b/src/@ionic-native/plugins/card-io/index.ts index b59e498a6..5d96b76e5 100644 --- a/src/@ionic-native/plugins/card-io/index.ts +++ b/src/@ionic-native/plugins/card-io/index.ts @@ -133,6 +133,11 @@ export interface CardIOResponse { * @name Card IO * @description * @usage + * Note: For use with iOS 10 + When building your app with the iOS 10 SDK +, you have to add some info to the info.plist file. This is due to increased security in iOS 10. Go to your app directory and search for the Info.plist file. Add the following lines in the main element. + * ```xml + *NSCameraUsageDescription + *To scan credit cards. + *``` * ```typescript * import { CardIO } from '@ionic-native/card-io'; * @@ -147,7 +152,7 @@ export interface CardIOResponse { * if(res){ * let options = { * requireExpiry: true, - * requireCCV: false, + * requireCVV: false, * requirePostalCode: false * }; * CardIO.scan(options);