Cloud daemon setup
The cloud daemon is automatically created after the initialise function has beek called.
The cloud 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 cloud API from your backend to initiate payments on the device.
In order to disable the cloud daemon you need to call:
// First disable the Brouwer Vos cloud daemon
BrouwerVosSoftPOSSDK.getInstance().getSdk().setEnableCloudSDK(false);
// Then initialize the SDK
BrouwerVosSoftPOSSDK.getInstance().initialize(getApplicationContext(), null);// First disable the Brouwer Vos cloud daemon
BrouwerVosPOSSDK.getInstance().getSdk().setEnableCloudSDK(false);
// Then initialize the SDK
BrouwerVosPOSSDK.getInstance().initialize(getApplicationContext(), null);Last updated