Hello, I use NSD to declare my printer IPP service, and the clover device does not see it, what could be the problem? Maybe I specify the service type incorrectly, here is my code:
private fun registerService(port: Int) {
val serviceInfo = NsdServiceInfo().apply {
serviceName = "NsdPrinterTest"
serviceType = "_pdl-datastream._tcp"
// serviceType = "_ipp._tcp"
// serviceType = "_pdl-datastream._tcp_printer._tcp_ipp._tcp."
setPort(port)
}