We are creating TV Remote App for Apple iOS (Swift Language) so we are using your SDK and we are setup SDK and add code for search devices and delegate method but device not find,
We are allowed Network permission, wifi capability and other things but not find any devices, Please help us for this situations
var serviceSearch = Service.search()
serviceSearch = Service.search()
serviceSearch.delegate = self
serviceSearch.start()
extension ConnectingDeviceViewController: ServiceSearchDelegate {
func onServiceFound(_ service: Service) {
print(service.name)
}
func onServiceLost(_ service: Service) {
print(service.name)
}
func onStop() {
print("stop")
// The ServiceSearch will call this delegate method after stopping the search
}
func onStart() {
print("start")
// The ServiceSearch will call this delegate method after the search has started
}
}
Thanks