Skip to content

Synqpay SDK - SynqpayManager Submodule

The SynqpayManager submodule provides basic management functionality to control and monitor the Synqpay service running on the payment device.

Methods

String getVersion()

Retrieves the current version of the Synqpay service.
Returns:

  • A string representing the version number of the Synqpay service.

void restartSynqpay()

Restarts the Synqpay service on the payment device.
Usage:

  • Useful for reinitializing or recovering the Synqpay service.

boolean isApiEnabled()

Checks whether the API submodule is enabled.
Returns:

  • true if the API submodule is enabled.
  • false if the API submodule is disabled.

Notes:

  • If the API submodule is disabled, it must be enabled through customer support.

void setRedirectActivity(String packageName, String activityName)

Sets the target activity for redirection when the client logo is tapped.

This method configures the destination activity within the client's application that should be launched when the client's logo image is tapped within the host application. The client's activity will be launched in a new task, or if a task already exists for the client's application, that existing task will be brought to the foreground.

Params:

  • packageName The package name of the client's application. This should be the unique identifier for the application, e.g., "com.example.clientapp". If null or empty, redirection will be disabled.
  • activityName The fully qualified name of the activity within the client's application to launch. This should include the package name, e.g., "com.example.clientapp.MainActivity". If null or empty, redirection will be disabled.

throws: RemoteException if either packageName or activityName is provided but is invalid (e.g., null or empty)