Is it possible to build SMS games using PlayN? - sms

Is it possible to create games with PlayN (in the HTML, Java and Android version) that the user can play via text messages? I'm thinking about games like Tic-Tac-Toe.
Or should I try something different than PlayN to create my games?

There's no built-in support for sending SMS via PlayN. Support for receiving and processing SMS messages would be impossible on non-mobile platforms, and I'm not sure it's possible on mobile platforms (due to a lack of an API). I've never heard of a game sending and receiving data via SMS, but perhaps such a thing exists.
You should consider using this fancy thing we have called the Internet to send your game data. It works pretty well for hundreds of thousands of existing desktop, HTML, Flash, Android and iOS multiplayer games.

Related

Xamarin.forms long running background work

I'm new to Xamarin platform. I'm developing an application for all three major platforms (WP,iOS,Android) using Xamarin.forms.
How can I sync data with my server in the background -> I need something similar to Android Service. I want to sync the data even when the user goes to a different screen of the app. It would be great if I could continue syncing the data even when the user leaves the app.
Thank you
This is the only solution i have found
http://arteksoftware.com/backgrounding-with-xamarin-forms/
in a few words:
You can't abstract background tasks in Xamarin.Forms because iOS, Android and WP works in a different way. You have to use MessagingCenter to send and receive data from specific implementations in each platform
Have look to this article: http://developer.xamarin.com/guides/ios/application_fundamentals/backgrounding/part_3_ios_backgrounding_techniques/ios_backgrounding_with_tasks/
You could provably be interested in the Transfer Background tasks.
Regards

Recommendations on Mac OSX (preferably Swift) video chat APIs?

I'm tasked with developing a fullscreen native Mac OSX (Swift preferably, as I've been experimenting with it a lot lately) application that will connect two kiosks in two different parts of the US (each with high speed hardwired internet connections) in a video chat session. The kiosks must be able to automatically/programmatically connect and reconnect in case of lost connection. I was looking into TokBox but it seems their SDK/API is WebRTC, iOs, or Android oriented, otherwise it would have been a great choice at first glance. As I understand it, WebRTC is really just meant for browsers.
Does anyone have recommendations on an SDK/API that can help me accomplish this?
You can use WebRTC and make a web app out of the website. It will look and feel like a regular appp. Take a look at Mike Kelly's Refract for a painless web app packager.

Building a SMS counting app for windows phone os

Folks,I am planning to build an app to count the number of sms's sent by an user over a period of time.But I am not sure if WP OS SDK gives access to the depth of writing such an app.I am still very new to mobile development,and as Microsoft has limited the access to some API's (ex:language) in the windows phone OS,I was not sure if I can do so.
On the contrary the application I want to build is kind of a basic feature that is in built in many basic phones.I need to get a start for app building,and may also come in handy on my personal phone! ;)Anyone who has come across working on any related feature might help me with his experience.Thank you for your time.
The Windows Phone SDK does not allow developers to access the content of SMS messsages for privacy reasons (or count of those, for that matter).
Your best (and only) bet at the moment is let the user use SmsComposeTask and count the number of messages potentially sent from your app.

Send data from WP7 phone to a near by phone via bluetooth or other mechanism

I'd interested in sending data from one WP7 to another WP7 phone so I could create 2 player games. If I understand correctly most WP7 will support bluetooth, but its not in the minimum spec, is this correct? What API's can I use to access the bluetooth, any good examples of this out there?
Unfortunately Microsoft don't provide any access to the bluetooth stack via any documented APIs in this version of the Dev tools.
They don't seem to have any sense of urgency about fixing this (or any of the many other missing features), so I wouldn't expect the situation to change any time soon.

Hardware-neutral library to sync with smartphones?

I'd like to know what the status is to sync data (eg. SQLite, etc.) from Windows with smartphones. Ideally, the same tool should support the main smartphones (iPhone, BlackBerry, Windows Mobile, Android).
Google returned information on OpenSync and SyncML, and I'd like to ask experts whether those projects are ready for showtime, and if not, if there are alternatives I should look at.
It seems like it's pretty much still a proprietary world, and the easiest way is to first sync with Outlook, and then sync Outlook with the smartphone using whatever sync utility it provided.
Thank you.
There is no single protocol which is supported by all phones. The two most popular ones are ActiveSync and OMA DM.
ActiveSync is supported by virtually all modern smartphones (except BlackBerry) and can sync mail, contacts and calendars. It can also (depending on the device support) do some basic device management such as remote lock or wipe.
OMA DM is a "competing" spec which is prevalent on Symbian phones but also supported on a few others. It is SyncML based and allows syncing pretty much anything on the phone.

Resources