Local daemon setup
The local daemon is automatically created after the initialise function has beek called.
The local daemon is a android service that is enabled on startup, and when the application is opened. This service is active also if the app is not in the foreground. This way you can call the local API from your frontend, or another device on the network to initiate payments on the device.
Disabling the local daemon
// First disable the Brouwer Vos cloud daemon
BrouwerVosSoftPOSSDK.getInstance().getSdk().setEnableLocalDaemonSDK(false);
// Then initialize the SDK
BrouwerVosSoftPOSSDK.getInstance().initialize(getApplicationContext(), null);// First disable the Brouwer Vos cloud daemon
BrouwerVosPOSSDK.getInstance().getSdk().setEnableLocalDaemonSDK(false);
// Then initialize the SDK
BrouwerVosPOSSDK.getInstance().initialize(getApplicationContext(), null);Last updated