Menu
  • HOME
  • TAGS

Card IO Android SDK clashes with Braintree Android SDK?

android,braintree,card.io

The Braintree SDK already includes the cardio java classes. However, it does not include the .so files. Please try removing your local copy of card.io.jar, and everything should work.

Remove TextView context Card.io scan activity

android,card.io

Jeff from card.io here. Sorry, at the moment there's no way to remove this text.

Import card.io source code as a modul in Android studio project

android,android-studio,card.io

I have the same error, solution was very simple: clone repository from https://github.com/card-io/card.io-Android-source, and necessarily init dmz submodule, as it is written in the instructions (First build point). Then specify your sdk and ndk location in local.properties like this: sdk.dir=/Users/=USER=/Documents/sdk ndk.dir=/Users/=USER=/Documents/android-ndk-r10e and run ./gradlew clean assembleDebug. Now you can attach...

Access a Xamarin Component's buttons (specifically the iOS card.io component)

ios,xamarin,card.io

So, I figured this out by looking at the working sample application and comparing it to what I had done. All I had to do was widen the scope of the paymentDelegate and paymentViewController variables....

Make view cover full screen using CGRectMake

ios,objective-c,cgrect,cgrectmake,card.io

Dave from card.io here. When you create a CardIOView, its frame will take on whatever size you set. However, the camera view within the (transparent) CardIOView will have the standard iOS camera form factor of 4:3. So if the CardIOView is 320 points wide, then its camera view will be...

No known class method for selector canReadCardWithCamera

ios,card.io

Dave from card.io here. Amit, things changed a bit in card.io version 4.0.0. See the release notes for all the details. In particular, note this section: * New class: CardIOUtilities - libraryVersion (formerly a method of CardIOPaymentViewController) - canReadCardWithCamera (formerly a method of CardIOPaymentViewController) - preload (formerly a method of...

Paypal CardIO returns exception

android,paypal,card.io

In your lib folder you have to add more dependency - armeabi armeabi-v7a mips x86 for more info check this on GIT. Hope it will solve your problem....

Card IO - Hide Manual Entry

cordova-plugins,card.io

Does this line from the cordova plugin help?

Data sent to card io servers [closed]

card.io

card.io sends auth requests ("may this app scan cards?") and analytics data. None of that includes card data. I suspect you'll find that the wire data you captured is a binary plist.

How to find out manual entry option button has been clicked in card.io scanner?

card.io

Dave from card.io here. No, it is not possible for you to determine this. If you wish to change the behavior of the Manual Entry button, then what you really want to do may be to use a CardIOView rather than a CardIOPaymentViewController....