Integrate our products into your software. Let's make payment happen together!
Look at all the possibilitiesIt’s possible to access/view the protocol specific internal logging of the mAPI. This is done by registering a MPALogger implementation object to the MPALogging class.
public class AndroidLogger implements MPALogger { @Override public void log(String line) { Log.v("MAPI", line); } }
MPALogging.addLogger(new AndroidLogger());