How to remove / hide Paypal logo from Card.io Phonegap iOS and Android?

I have successfully integrated the Card.io plugin for Phonegap on Android and iOS.

My client does not want the Paypal logo to appear in the upper right corner of the scan screen. Is there any way to hide this?

enter image description here

+8
android ios cordova paypal
source share
5 answers

The current implementation of the PhoneGap plugin is not implemented, but it’s very simple to add it, just unlock the plugin and change it to use the card.io logo instead of PayPal.

For iOS https://github.com/card-io/card.io-iOS-SDK/blob/master/CardIO/CardIOPaymentViewController.h#L92

For Android http://card-io.imtqy.com/card.io-Android-SDK/io/card/payment/CardIOActivity.html#EXTRA_USE_CARDIO_LOGO

Hope this helps.

+6
source share

Yes, it is possible the HIDE logo paypal and the Card IO logo in Android native, but its work is difficult.

You need to open Jar card.io, after that you will need the decompiler code, after that with .class files

you need an assembler editor so that you can delete cab images in the machine’s byte-code instruction

and nothing is displayed, you can’t remove the keyboard, but you can put a black screen above this, in the link you have card-io-modified.jar, with this bank you will delete these things

get lib here: https://github.com/luizfelipetx/CardIO-Modified

=)

+3
source share

For native ios

CardIOPaymentViewController *scanViewController = [[CardIOPaymentViewController alloc] initWithPaymentDelegate:self]; scanViewController.hideCardIOLogo=YES; 
+3
source share

You can try this plugin: Card.IO

It has a property called "hideLogo": true

0
source share

On line 81 of CardIOCordovaPlugin.m you can change the line of code

 paymentViewController.hideCardIOLogo = YES; 
0
source share

All Articles