Is Android NSD (Network Service Discovery) compatible with Bonjour service in iOS?

后端 未结 1 965
一生所求
一生所求 2020-12-14 01:55

I will create a server-less local networking App for iOS and Android. the App in both iOS and Android devices should find out and talk to each other.

I know that the

相关标签:
1条回答
  • 2020-12-14 02:46

    I developed similar project. Let me answer your questions:

    1. Yes. The official sample code should be able to make your quick start. Implement the function of service discovery is very easy. Only two steps: setting up a discovery listener with the relevant callbacks, and making a single asynchronous API call to discoverServices().
    2. If you use the third-party library, Advantage: It can make your application works below Android 4.1;Disadvantage: Developing the function of service discovery would more complex. Because of you need write a background service to listen to broadcasts on the network.
    0 讨论(0)
提交回复
热议问题