cordova-plugin-zeroconf icon indicating copy to clipboard operation
cordova-plugin-zeroconf copied to clipboard

Cordova ZeroConf Plugin

Results 15 cordova-plugin-zeroconf issues
Sort by recently updated
recently updated
newest added

**cordova-plugin-zeroconf** version 1.4.2 There is no response from .watch() method Even if the local network is enabled through some other means, the plugin calls the error callback with "null" Platform...

I'm using this plugin with Ionic 5 and Angular 9 in my project. And whenever I call zeroconf.watch(), it somehow blocks automatic change detection of angular components and I need...

Hi. I understand and can use the library I think, but I don't understand how to do basic things. I can subscribe or watch something but I can never really...

The plugin works perfect on android, but it seems to have broken my IOS build. I'm seeing this error: ``` cordova-plugin-zeroconf/ZeroConf.swift:27:24: error: cannot find 'Hostname' in scope let hostname =...

``` zeroconf.watch('_http._tcp.', 'local.', ({ action, service }) => { console.log(service) if (action === "resolved") { console.log(service) } else if (action === "removed") { console.log(service) } }) ``` Same code works...

I added type defs for static code checking in vscode. I'm not sure how to tell it that it clobbers cordova.plugins.zeroconf, so I had to add this to my code:...

Hi I'm getting an error in XCode when running ```zeroconf.watch``` from my cordova app. The error is in ZeroConf.swift:398: ```let dict = NetService.dictionary(fromTXTRecord: txtRecordData)``` The error is : ```Thread 1:...

On Android, for most devices, we get "added" event for most devices, however this event is missing the IP address and TXT record data. avahi-browse shows all the devices correctly...

After switch wifi, the failure callback will be called. After that the zeroconf can't find new services. I have tried: this.zf.watch('_http._tcp.', 'local.', (result) => { }, (ec) => { //...

Replace JmDNS with [RxDNSSD](https://github.com/andriydruk/RxDNSSD)

enhancement