Secugen Rd Service Check
User Guide - UPLINX Report Tool
User Guide - UPLINX Report Tool

Secugen Rd Service Check

If the user factory reset the device or installed your app on a new device, the background RD Service APK will be missing.

AlertDialog( onDismissRequest = { /* Dismiss logic */ }, title = { Text("Biometric Verification") }, text = { Column { Text(statusMessage) if (!isReady) { Spacer(modifier = Modifier.height(8.dp)) Text( text = "Please ensure 'SecuGen RD Service' app is installed and the scanner is plugged in.", style = MaterialTheme.typography.bodySmall ) } } }, confirmButton = { Button( onClick = { /* Start Scanning Logic */ }, enabled = isReady // Only allow click if check passed ) { Text("Start Scan") } }, dismissButton = { if (!isReady) { TextButton(onClick = { // Open Play Store or RD Service App settings val intent = context.packageManager.getLaunchIntentForPackage("com.secugen.android") if (intent != null) { context.startActivity(intent) } }) { Text("Open RD Service App") } } } ) } secugen rd service check

As a valued user of SecuGen's biometric solutions, it's essential to perform regular checks on your RD Service to ensure optimal performance and prevent potential issues. In this post, we'll guide you through the steps to conduct a SecuGen RD Service Check. If the user factory reset the device or

class RDServiceWrapperImpl(context: Context) : IRDServiceWrapper { private val checker = SecuGenRDChecker(context) override fun checkStatus(callback: SecuGenRDChecker.CheckCallback) { checker.performCheck(callback) } } title = { Text("Biometric Verification") }