card.io

How to get card.io to scan expiration dates? (iOS 6)

百般思念 提交于 2019-12-22 09:56:34
问题 I've been told by others that the card.io SDK can scan expiration dates in addition to card numbers. Yet when I integrate it into my iOS 6 iPad project, I'm only able to scan the card number. Has anyone had success in other implementations? (i.e. iOS 5, iPhone, etc.) Thanks in advance. 回答1: I work at card.io. Newer versions of the card.io SDK (3.x and above) do all the card scanning locally on the client - older versions sent images to our server for scanning. We haven't added expiry scanning

card.io Mono for Android (Xamarin Studio)

烈酒焚心 提交于 2019-12-21 04:14:34
问题 Has anybody successfully created a card.io wrapper they're willing to share that can be used in a Mono for Android application or can somebody shed some light on what I'm doing wrong? Create a new Android Java Bindings Library Project Add the .jar and .so files from card.io SDK 3.0.3, be sure to use the existing folder structure Add the following to Transforms/EnumMethods.xml to resolve a compiler error: <mapping jni-class="io/card/payment/CardIOActivity"> <method jni-name="onActivityResult"

What card types are recognized by card.io? Does card.io support recognizing merchant cards?

 ̄綄美尐妖づ 提交于 2019-12-19 07:33:43
问题 There is no documentation for card.io that I can find other than source comments. The CardIOCreditCardInfo.h file has an enum for CardIOCreditCardType. typedef NS_ENUM(NSInteger, CardIOCreditCardType) { /// Deprecated. /// @see CardIOCreditCardTypeUnrecognized, CardIOCreditCardTypeAmbiguous CardIOCreditCardTypeUnknown __attribute__((deprecated("Use CardIOCreditCardTypeUnrecognized or CardIOCreditCardTypeAmbiguous instead."))) = 0, /// The card number does not correspond to any recognizable

What card types are recognized by card.io? Does card.io support recognizing merchant cards?

随声附和 提交于 2019-12-19 07:33:03
问题 There is no documentation for card.io that I can find other than source comments. The CardIOCreditCardInfo.h file has an enum for CardIOCreditCardType. typedef NS_ENUM(NSInteger, CardIOCreditCardType) { /// Deprecated. /// @see CardIOCreditCardTypeUnrecognized, CardIOCreditCardTypeAmbiguous CardIOCreditCardTypeUnknown __attribute__((deprecated("Use CardIOCreditCardTypeUnrecognized or CardIOCreditCardTypeAmbiguous instead."))) = 0, /// The card number does not correspond to any recognizable

Card.IO custom manual screen

谁说我不能喝 提交于 2019-12-13 19:00:29
问题 I want to integrate Card.io's library into my app. Card.IO has a feature where the users enters the CC details manually - I want that to be my custom screen instead of Card.io's screen. Is that possible? 回答1: It is possible. On iOS, you can add card.io as a view: https://github.com/card-io/card.io-iOS-SDK#integrate-as-a-view You could, say, use the view-only integration in your own custom view controller with your custom "manual" button that pushes your own custom manual entry view controller

Can I use card.io credit card number text field in IOS in a custom Enter manually screen?

限于喜欢 提交于 2019-12-13 05:01:32
问题 I have integrated Card.io successfully and it is working perfectly. But we now want to add the logo of the payment gateway we use in the screen where the card details are entered manually. As there is no way to customize the SDKs "Enter Manually" screen, we thought of implementing a custom screen to capture the card details. Is there a way to use the features present in the SDK's screen, in a custom screen? Features such as credit card type detection, number validation, month and year

card io not scanning credit card in android

ⅰ亾dé卋堺 提交于 2019-12-13 03:01:30
问题 I am trying to implement Card.io in my app, I followed the instructions on Card.io website and when I get into my app and I launch it. When I click button I call CardIOActivity and I can't turn on my camera. I have this screen when I click button This is my manifest code: <uses-sdk android:minSdkVersion="8" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission.VIBRATE" /> <uses-feature android:name="android.hardware.camera" android

Card.io sdk not reading expiry date

妖精的绣舞 提交于 2019-12-11 18:52:59
问题 I'm trying to scan my master-card (Titanium) using Card.io SDK. Scanner scan the card number properly but it is failing to read expiry date. I have to to enter the date manually. 回答1: Dave from card.io here. Yes, as you have observed, at this time the card.io SDK scans only the card number, and not the expiry date or other information. 来源: https://stackoverflow.com/questions/24030414/card-io-sdk-not-reading-expiry-date

Opening Scan layout using card.io leads the app to background

房东的猫 提交于 2019-12-11 12:09:48
问题 I am using card.io SDK in my android app to scan Credit card number. when the camera opens (Scan layout) to scan the card, the app which is having the libs of card.io went to background not in ios. So the camera is not opening as a part of the app's activity i think. hence my app went to background. Is this possible to open camera (scan layout) using card.io as a part of the app's activity? 来源: https://stackoverflow.com/questions/32180632/opening-scan-layout-using-card-io-leads-the-app-to

Card.IO on Android with Gradle

我是研究僧i 提交于 2019-12-11 11:22:15
问题 I've been using Card.IO for a while. Recently I switched my build system to Gradle and I noticed the scanner does not work anymore. Instead of the camera popping up, I get a manual entry form instead. I assume this has something to do with the .so files not being included in the build, but I have no idea how to fix this. I've tried some things in the build.gradle file, such as including '*.so' explicitly and including the subdirectories. But nothing seems to get the scanner back to work. 回答1: