Do we have a plug-in for Wi-Fi right in the telephone bundle?

Do we have any Wi-Fi plugin right in the telephone bundle?

I want to exchange data using wi-fi, and we can do it in my native android using wi-fi direct , but when I checked the phone disassembly, I did not find any suitable documents.

Is there a way I can do in a telephone bundle?

Any solutions or documents will be very helpful.

Thanks:)

+7
cordova wifi-direct
source share
1 answer

I'm new to Cordoba, but maybe you can use the cordova.exec function:

 cordova.exec(function(winParam) {}, function(error) {}, "service", "action", ["firstArgument", "secondArgument", 42, false]); 

http://docs.phonegap.com/en/2.7.0/guide_plugin-development_index.md.html

If it is used only for android, you can use the following functions:

http://developer.android.com/guide/topics/connectivity/wifip2p.html

Please let me know if you get anything!

+1
source share

All Articles