-3
votes
0answers
16 views

Please help to understand P2P, NAT Traversal libraries in Java(Android)

I need to implement file transfer between 2 Android devices. After a small research I got an answer that I need to use ice4j to implement TURN. Then I looked more and find out about JXTA framework for ...
-1
votes
0answers
19 views

Android speed of p2p-wifi communication between two devices [closed]

how fast (data transfer rate) is peer2peer communication within a wlan-network (via Wifi) between two android devices? I know that the speed will diversify depending on the used devices or the general ...
2
votes
0answers
20 views

WifiDirectActivity Sample alteration: Transfer an ArrayList<String> p2p

I have looked at the Android wifi p2p API here and have taken a look at the sample code provided in "WiFiDirectActivity" which simply allows phones to transfer image files from one phone to another. ...
0
votes
0answers
31 views

How to use Android's Wi-Fi Direct to send and receive ArrayList<String> objects from my app on one phone to the app on another?

I have looked at the Android wifi p2p API here and have taken a look at the sample code provided in "WiFiDirectActivity" which simply allows phones to transfer image files from one phone to another. ...
1
vote
1answer
28 views

How to transfer ArrayLists of Strings between two Android phones?

I am developing a trading card game app that allows PVP play. To populate the battlefield GridView of the opponent, I need the app to be able to receive several ArrayLists of Strings from the opposing ...
0
votes
0answers
21 views

Controlling 1 mobile device with another (input sharing)

Short question kept short: What existing technologies can be used to talk between one Android device (or iOS device in the future) to another android (will always be android for the remote device) ...
-2
votes
0answers
63 views

Android bluetooth Master-Slave/Peer to peer application develpoment [closed]

I want accomplish the following via a Android application: Android Application should be able to discover bluetooth devices (non-Android devices such as headset/gaming device/keyboard etc) which can ...
-1
votes
0answers
19 views

Finding Printers in your network [closed]

I'm trying to find a printer in the network.What are the possible solution available to search printers in your network.Is there any library available to use which can be used? or how we can use ...
3
votes
0answers
133 views

ACS ACR122 SDK Android Peer-to-Peer support?

I am looking to connect the ACS ACR122 to an Android Tablet via USB using their SDK. This part works and I am able to read mifare NFC cards. The Problem: I am unable to read NFC smartphones like the ...
0
votes
0answers
147 views

sending messages between clients in Android p2p wifi-direct

If there are three devices A,B and C are connected using Wifi-direct , assuming B is Group Owner. How can A sends messages to C?On running the Android wifi direct demo ,I noticed that A and C knows ...
0
votes
0answers
44 views

Using WifiP2pManager to find network printer

Part of building an application I'm trying to find a printer in the network, now I send a ping to the address so I know which network addresses are occupied. The problem is I do not know which printer ...
0
votes
2answers
234 views

Connecting two devices using libgdx

I'm developping a video game on both pc and android using libgdx. And i would like to connect them by Wifi or Bluetooth on a local network. The idea is to play in p2p, establishing this connection ...
0
votes
1answer
479 views

Android : Audio calling/Voice chat over wifi

I want to implement an application that enables the users to make an audio call/ do voice chat over wifi. I'm a bit of a novice at Android so I wanted to ask where to start from?
1
vote
1answer
298 views

Android p2p0 interface has ipv6 address

I downloaded OS Monitor app to inspect all network interfaces. I discover: on p2p0 interface, there is a default ipv6 address before any ad hoc (wifi direct) connection. The value is similar to ...
0
votes
2answers
98 views

Android : How to determine the file extension of a file

I am trying to share files between two Android phones using Socket programming. The problem is right now I have to hard code the file extension on the receiving end. Is there a way that I can ...
0
votes
0answers
112 views

WiFi direct service discovery serviceLost

I am experimenting with Android Jellybean WiFi Direct service discovery API. You can discover all the services discoverService() API and the callback: ...
0
votes
2answers
60 views

How do I initialise a variable in this case?

I'm starting an intent where the activity started depends on whether a device is a group owner or just a joined peer. At the moment, instructIntent is not initialised. Am I supposed to make it null as ...
0
votes
1answer
282 views

Android P2P file transfer

Android : Hey I'm trying to develop a peer to peer Android application that enables the users to exchange files (photos, videos or any other file) over the WiFi without a central server i.e. an ...
0
votes
0answers
277 views

P2P (SIP) audio call in Android

I have a .Net program in which I use p2p audio call using my SIP SDK to transfer audio in my local network. Now I'm going to develop an Android version of it but can't find an SDK that support p2p ...
0
votes
1answer
78 views

how to get sip2peer work in Android

I'm trying to use the sip2peer example from http://code.google.com/p/sip2peer, downloaded the android code, ran the example, nothing happens. I read some questions and answers, it seems like I need ...
1
vote
0answers
110 views

P2P substrate for Android (Java) and C (Atmel)

I need to implement a P2P protocol in my Android App. I want to communicate with my self-build electronic module (Atmel processor). I know there are several P2P library for java and Android but I ...
0
votes
0answers
246 views

What are good cross-platform peer to peer video streaming frameworks for mobile?

What frameworks/libraries exist that can be used to implement video chat/calling, ala Skype, that run on multiple mobile platforms, at least iOs and Android? My understanding is that there are two ...
1
vote
0answers
409 views

NFC Peer2Peer Mode - Android Beam - ISO 18092

I need to find out how in Android Beam the P2P-Mode is managed. I found some general information about P2P: There is an active P2P Mode (not recommended by NFC Forum) and the passive One ...
0
votes
0answers
67 views

Android Peer to Peer like GKSession in iOS

How can i pass values in Android Peers devices. Is there any framework in Android like GKSession in iOS. Is it possible to use Client-Server connection between devices in Android.
1
vote
3answers
156 views

Getting around NAT for P2P app if I have all ip info?

I am making a P2P android app. My current issue is that I am unable to get my devices to recognize each other unless they are on the same network and I use private IP addresses -- I have all public ...
0
votes
0answers
67 views

Android App - Why my App crash when 『not compile』running

I have a very strange case That my Android app works fine when it is started from Eclipse compiling But after the first time i compile it, every time I open it,it crash right away ! It just open ...
3
votes
1answer
342 views

Clients/Peers communication with wifi-direct on Android

I have three Android devices: A,B,and C. They are connected via wifi-direct (assuming B is the group owner). I just have two questions: Can B connect as a client to the another wifi-direct group? ...
4
votes
1answer
183 views

BUS_BLOCKING_CALL_NOT_ALLOWED error in AllJoyn

I'm trying to use AllJoyn for my app, but when I'm trying to use code from sample (sample 13), I can't join to session and get error BUS_BLOCKING_CALL_NOT_ALLOWED. bus.registerBusListener(new ...
6
votes
2answers
703 views

android socket programming behind a router

Hey guys I have a question or problem. I am trying to make a p2p connection between two android phones. I have each phone connect to my server and I get their private (192.168.1.1) and public ...
0
votes
0answers
379 views

Creating a P2P Android Chat, which framework to use for networking?

I want to build an (Android) application that works over p2p like so Server (list of peers (usernames & ip's)) & Phones (fetch list of peers from server and create a socket chat between ...
5
votes
3answers
522 views

How to create peer-to-peer connection?

After reading a bit more about how to create P2P networks function, I wanted to start my own peer-to-peer sockets creation. I'm working on some apps for the android platform and I have problem that ...
0
votes
2answers
436 views

P2P or Client Server (Wi-fi hotspot Android) [closed]

I'm going to creating an Android App where 4 players can connect together and play the game together, now the connection is most probably going to be bluetooth, quicker and my app wont be using a ...
3
votes
1answer
3k views

Unity3D for iOS and Android: Bluetooth Connection

i'm looking for a way to connect two devices using Bluetooth in Unity iOS and Android Basic for Multiplayer-Gaming. I found: AllJoyn by Qualcomm - Bluetooth works apparently only with Root-Android ...
0
votes
1answer
225 views

Alljoyn android sdk force crash

I am new to alljoyn and I just saw the alljoyn intro webinar video. I have installed the alljoyn sdk and imported the chat sample. I added the bundles jar and the daemon file to the libs folder. I ...
0
votes
0answers
187 views

how can i create a p2p connection via WIFI/internet/WAN in android?

ok so i want to create p2p connection. i want to connect my phone to my brother phone in p2p WIFI/internet/WAN connection. i want to make a chat that will be peer to peer (between me and my brother) ...
0
votes
1answer
78 views

Android: Where to store an Object

I'm using a library named Sip2Peer to implement a basic P2P system. Each device is a Peer and needs to have an instance of the class SimplePeer stored somewhere. This object is used to send messages. ...
2
votes
0answers
215 views

Android P2P library

I want to share files from one android phone to other p2p. Let's suppose I know the IP of other user: 192.168.0.56 and I want to send a text file to this user. Is there any Library that can help me ...
6
votes
0answers
443 views

Clients/Peers communication with wifi-direct on Android platform

I have three Android devices: A,B,and C. They are connected via wifi-direct (assuming B is the group owner). I just have two questions: 1. A want send a message to C, does the message have to pass ...
0
votes
1answer
197 views

Sip2Peer. Trying to make bootstrap and Android example work --> numPeer is always 0 and list is empty

I'm new with Sip2Peer and I was trying to set my Bootstrap Peer and SBC to use the Android example. I installed Apache Ant in my server and executed BootstrapPeer.java and ...
1
vote
2answers
629 views

Realtime P2P communication between mobile devices

I am building a mobile device that needs to send realtime information to other devices. I have considered XMPP but I do not have a server, so the communication must be only between the devices. Is ...
2
votes
1answer
675 views

data transfer between an android and an ios device

I want to transfer some data (app specific data) from an ios device to the android device (and vice versa) running the same application for respective platform. I understand the easiest way to ...
1
vote
1answer
994 views

Android P2P Video chat using SIPDROID

My plan is, to create a instant video chat App for Android. I've found Sipdroid wich gives me the opportunity to make video and voice calls using the SIP. The user should just open the App and be ...
0
votes
2answers
1k views

Connect android 4.0.3 phone to Wifly

How do you connect an Android 4.0.3 phone to a Wifly module using level 14 API function wifi direct? I configured Wifly to work in adhoc mode, and wrote the Android app as shown in the ...
1
vote
2answers
211 views

Chat Protocols and Client to client connection?

I'm looking for a protocol/API to implement a video chat application. In this app, the clients connect to a server and when two clients start chat, they don't send/receive data to/from server! ...
0
votes
1answer
166 views

What is today's standard that might have replaced JXTA and P2P?

I've built an instant messaging application + voice chat(currently working on it) that is designed as centralized network. But when I was first starting out to build this app, I was interested in ...
0
votes
3answers
1k views

Peer to Peer communication between iOS and Android devices

So I am a relatively new iOS developer but thanks to Stackoverflow, i managed to get peer to peer data communication for my app working without the need of a server using gamekit/GKSessions. ...
0
votes
0answers
140 views

Video-on-Demand P2P between iOS and Android [closed]

I'm writing app for Android and iOS to view video from my Server. I want this app support P2P, I don't know best library (android and iOS) for do it ? Can you help me ?
0
votes
1answer
82 views

Hosting a private wifi signal from droid

I have been trying to write an app that generates a personal WiFi hotspot from an android device, that funnels webpage and file download requests through the host's mobile data connection. I have ...
3
votes
2answers
244 views

Android P2P connection on WAN

I successfully connected connecting 2 android Mobiles p2p using: //On server public static String SERVERIP = "192.68.100.104"; public static final int SERVERPORT = 8080; ...
0
votes
1answer
257 views

Peer to Peer Connection using WAN & IP [duplicate]

Possible Duplicate: How to make an android peer to peer without using intermediate server? I have a WAN address 209.179.xx.xx and the Ip on my Machine is 192.168.x.x can i ascess my ...

1 2