How would one share data (string/url etc) between an iPhone app and an Android app? I’m thinking a server-side solution is overkill for what I want, so my next idea was to use wifi or bluetooth to sync the iOS and Android device. Is this even possible and if so what is the best way to approach this problem?
Does anyone have any frameworks or resources that could help me? Cheers.
I don’t think Bluetooth is an option because of the restrictions imposed by the iOS framework.
Peer to peer synching via wifi will require one or both apps to act as a server. You’ll have to decided which network protocol to use. I suspect that HTTP will be the easiest to implement but it may not be well suited to your requirements.
You then have the problem of discovering peers on the local network. This is relatively straight forward with iOS to iOS devices because of Bonjour. I don’t know if there are any bonjour frameworks for Andriod.
Personally I’d try to make it work with a standard web server.