tags:

views:

174

answers:

2

I need to monitor GPS Coordinates changes at every 15 min and take action based on that. as per bada developer guide report "only one application allowed to run at a time if another application try to run first one is closed" .so that how do i monitor GPS coordinates without interruption from other applications. how do i keep my application running at all times

UPDATE
bada agent applications alt text

+1  A: 

It appears that the Bada environment is neither designed nor suited for your application. QUoting Samsung: "According to one of the fundamentals of bada development, bada devices do not support daemon (agent) applications. "

MSalters
thanks for your response, I have updated my question please check that
JKS
I've re-checked the 3rd-party developer guide, but it doesn't mention "agents".
MSalters
A: 

I came to understand that Agent application functionality still not implemented for 3rd party applications, it is reserved for internal use only. And there is no daemon like application functionalities.

We can use multitasking inside user application but not multiple user applications due to single application policy.

Bada platform is not limited to single tasking, bada allows multitasking between base applications such as music player, calendar and so on.

So continuously monitoring GPS coordinates is difficult

JKS