0
votes
1answer
57 views

Scaling GCM Push. How often can you perform GCM Push?

Everybody tells me that polling server for new data is stupid if the server is yours and you should implement push with GCM instead. Well, I agree and have done so but, I was wondering, how often can ...
0
votes
1answer
108 views

How to properly monitor and log Android OS events/activity in the background

I would like to know the correct way to monitor system events and operating system activity in Android. My research so far indicates there are various methods for running Activities, Services, ...
0
votes
0answers
50 views

Android polling the printer to disable bluetooth sleep mode

I am using an starIOPort jar file in my application for printing. My application uses bluetooth for connectivity between mobile device and the printer. My concern is i want to poll the printer every ...
0
votes
0answers
112 views

Standard Design Pattern for building a Social Notification System for Android -

Working on a social app that has alot of the standard social networking features such as friend requests, private messages and comments and im in need of a real time or near real time notification ...
2
votes
2answers
135 views

how to publish and subscribe notification for multiple mobile plattforms: Android, Iphone without polling

I'm looking for the best way to develop a mobile application in a scenario, that basically users could subscribe to any topic, and when someone using a web app publish any message of that topic, the ...
1
vote
0answers
87 views

how can i implement polling Service to a Web Server?

I am facing for the first time with a problem in Android: I need a Service that works like a polling. I have an Activity that has to do POST requests periodically to a web server. In fact, it ...
2
votes
1answer
236 views

Pushing info to an android app via PHP server? [closed]

Is there a way to keep a connection open between an Android app and a PHP script, so if there are any updates, the PHP script can push notifications out to the android app, rather than the app having ...
0
votes
1answer
186 views

Android Background Polling and User Interface

I am building an application that currently runs as a standalone application that polls a service using an AsyncTask. I would like to move the polling to an Android Service that runs upon start and ...
0
votes
0answers
38 views

When exactly are touchEvents fired in Android?

currently I'm building some kind of a keylogger for my own keyboardView in order to examine different keystroke dynamics. Therefore I recreated some parts of Swype (except for the word prediction). ...
4
votes
3answers
2k views

Socket connections and Polling. Which is a better solution in terms of battery life?

So... I'm making an application for Android. The application needs to send and receive realtime chat data (needs to be a socket) but it also needs to send commands (which don't as the client knows ...
3
votes
4answers
828 views

Android Polling from a Server periodically

I want to pull some data from a server every x minutes. IF the info contains certain information I would like to create a notification. I want this polling to happen even when the app is in the ...
0
votes
0answers
167 views

LocationPoller unable to poll

I'm using CWAC Location Poller which is called by an alarmmanager from an activity with the code: Intent i = new Intent(this, LocationPoller.class); Bundle b = new Bundle(); ...
10
votes
4answers
4k views

How does push notification technology work on Android? [closed]

How has Google implemented their push notification feature? Does it work through polling done by a service running in the background or in a different way?
1
vote
2answers
2k views

(Android, iOS, Windows, Linux) Server Polling Vs Push vs Implement Server

I'm building a multi-OS mirroring system which I would like to implement using a hybrid client-server and p2p communication method (at least that's the best way I have of describing it). My issue is ...
1
vote
1answer
140 views

Realtime html 5 application polling

Finally after a while I have an application that pushes notifications to android and iphone. Now what is the best way for me to retrieve notifications from a webservice. I dont like the idea of ...
5
votes
3answers
1k views

Android - Sockets vs Polling

As part of an Android app I'm developing there is a chat room feature. We have a server which can process the incoming messages and store the messages. Is it better to keep a socket connection open ...
3
votes
2answers
1k views

Android: connectivity issues in background thread after alarm when “always-on” turned off

Problem description: In my android App, I experience connectitity issues when doing a remote HTTP ("polling") call from an AsyncTask that was started after an alarm went off. The lookup works very ...
1
vote
1answer
4k views

Android Long Polling - Timeout executing service

I am trying to implement LongPolling in my Android Application. Long Polling If the LongPolling needs to long to get a answer my android service crashes. I tried with Threads and Async. Generally i ...
0
votes
1answer
549 views

Android to external bluetooth polling

I'm trying to pulse my bluetooth dongle, to see if it is range. Every second my Android sends a char to the dongle, which then responds with a char. If there is no response, or the char is wrong, then ...
9
votes
5answers
9k views

Why are touch events destroying my Android framerate?

I'm developing a game for Android. It's got a lot going on but is running reasonably smoothly. That is, of course, until the user touches the screen. While they're touching it, onTouchEvent is called ...