-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Troubles to send data from an android phone to another #27
Comments
Hi, The plugin does not actually have any way to accept incoming connections, so even though your receiving device is connected to the device that is writing, they are not communicating through a "shared" socket. As you can see on StackOverflow, you would need to implement an |
Hi, |
Hi, |
hey @Brileantag do you have some code to share? im having the same problem but i dont know where to start. Thanks in advance. |
Hey @arielgpe , sorry for the late reply. I was not able to use internet for a long period. If still needed, I have a code i could share with you, a small change of the plugin source code. Do you want to have it by mail or should i paste it here? |
@Brileantag how it is more comfortable to you? im okay with mails or repos that i can fork. |
@Brileantag could you paste the code here or email me? Thanks |
Would this code work to connect android 4.4.2 to windows 8.1 pc or yosemite mac os x? I haven't looked at what I have to do on desktop yet. |
@coderextreme Hi, the plugin should probably be able to connect to various devices with bluetooth capabilities, such as a desktop pc. You would have to handle the incoming connection on the desktop then. |
Hi @tanelih, even I am facing the same problem |
@hnthakkar, Take a look at this for some guidance on how to implement an |
Hi!
I am facing with a problem when i try to send strings from an Android phone to another one (Sender: android 4.2, receiver: android 4.1). The functions
discover
,connect
,pair
,enable
,startConnectionManager
work fine. Thewrite
one also seems to work good, because theSuccess callback
is called after have written. After that, the device on which the writter is connected is never notified by any data received.Here are more details:
I have seen on Stackoverflow that the problem was caused by the fact that i start the connection manager on both devices. Does this still in instance? i have tried to implement the solution given in that post unsuccessfully. Please, how could i turn round this problem?
The text was updated successfully, but these errors were encountered: