I'm writing a mobile app that will be a remote control for a PC application. What I want to do is couple them using WiFi Direct.
I read about the P2P Service Discovery feature, that allows me to look only straight for devices running a certain service (and not for all of the available WiFi Direct devices).
On the Android side I implemented it using these tips: https://developer.android.com/training/connect-devices-wirelessly/nsd-wifi-direct.html
On the Windows side I'm running this app: https://github.com/Microsoft/Windows-universal-samples/tree/master/Samples/WiFiDirectServices Unfortunately in case of the PC side, I'm not even able to start advertising my service - the Advertisement Status is automatically set to 'Aborted' just after trying to launch it.
1) Is that at all possible to couple a Windows application with the WiFi P2P NSD feature provided by Android devices? (asking if I should waste my time)
2) Is that possible for a Windows PC to support P2P Service Discovery? Here the issue of system capabilities is discussed; in case of my PC WiFi Direct is supported, and none of P2P Discovery features are. Is there any way to make it support it, either hardware or software?