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.
Jeff from card.io here. Sorry, at the moment there's no way to remove this text.
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...
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....
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...
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...
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 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.
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....