WalletNotifications
object WalletNotifications
POST_NOTIFICATIONS helper for ALL of the wallet's foreground notifications (#261-264, generalizing the original #235 dust-sync use): the ongoing operation/sync progress, the dismissible finalization push, and the received-funds / "your turn" alerts.
The runtime permission (API 33+) only controls notification visibility — the foreground service, operations and sync all run regardless, so this is best-effort. The SDK can't show the system permission dialog from a library service, so the host requests PERMISSION with the standard ActivityResultContracts.RequestPermission (one line in a ComponentActivity/Compose), using isGranted to gate the ask.