Kirill Zyusko

Results 540 comments of Kirill Zyusko

> Also, I got a doubt. createGroup() always fails as it says that the framework is busy. Could it be because subscribeOnPeersUpdates() is always running in the background and preventing...

One interesting moment: ``` Calling JS function after bridge has been destroyed: RCTDeviceEventEmitter.emit(["WIFI_P2P:PEERS_UPDATED",{"devices":[{"status":1,"isGroupOwner":false,"secondaryDeviceType":null,"primaryDeviceType":"10-0050F204-5","deviceAddress":"82:58:f8:25:e0:01","deviceName":"Android_819e"}]}]) ``` Why bridge has been destroyed? :) It happens before actual sending. Another moment: ``` 08-19 01:49:33.109...

> So you mean adding more log statements in react-native-wifi-p2p package? Yes, it may be useful to see, where the errors occur. You can try to wrap the body of...

@c-thun have you tried use this repo: https://github.com/kirillzyusko/react-native-wifi-p2p-example Maybe you made a mistake in the integration this library into your project? I really want to help you. So, please, try...

You can read more about error: https://developer.android.com/reference/android/net/wifi/p2p/WifiP2pManager#BUSY It's system Android error. So the search in the internet may also give you some useful insights. Just try to search `busy wifi...

Good. At least one device now can create group successfully. The error seems to be the same as before. So I have to ask: did you call `getConnectionInfo`? Was the...

But I can try to say in advance where is the problem :) You have `%3A` in you path `.../msf%3A14`. As I described in https://github.com/kirillzyusko/react-native-wifi-p2p/issues/26 such symbols should be properly...

Try to use [this](https://www.npmjs.com/package/urlencode) package. Or try to search in google how to encode/decode URI. Maybe you could find better way :) I'm using `encodeURI` in browsers. Not sure whether...