Nishant Mendiratta

Results 6 comments of Nishant Mendiratta

@rohandubal Yes. I am using MQTT-Client-Framework https://github.com/novastone-media/MQTT-Client-Framework

@yusufonderd What is your `subscriptionTopic` here? Does it include `device-id`?

@yusufonderd and it works fine in Android client? In my case it was not connecting as I was not setting the `clientId` correctly.

@yusufonderd can you just call `connect()` method on session and then have your delegates method subscribe to topic. Once there is a connection established, the delegate method `func handleEvent(_ session:...

I am using the pod as you described. Here is the code: ``` let bonjour = BonjourSession(configuration: BonjourSession.Configuration(serviceType: "airplay", peerName: UIDevice.current.name, defaults: .standard, security: .default, invitation: .automatic)) bonjour.start() bonjour.onStartReceiving =...