Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-20 Thread asheesh arya
hi kristopher, can you justify your staement that how can my application is not possible to implemented. please be specific. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-20 Thread asheesh arya
hi tryking, then suggest me some diffrent appraoch rather than broadcastreceiver to build my application . -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-20 Thread Kristopher Micinski
Err... Your spelling is a little off... But basically, if you're trying to write a spy app, the point of anyone doing Android systems development is to try to make sure your app is impossible to write. You also seem to lack a fundamental understanding of how broadcast receivers work: they are

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-20 Thread Nadeem Hasan
I think there is another forum specifically for people trying to write spy applications on Android. I am unable to recall where. Or maybe I saw it when I was dreaming in my sleep. I just don't seem to remember. Oh and reading the docs to understand basic framework concepts also help. -- You

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-20 Thread TreKing
On Fri, Apr 20, 2012 at 2:21 AM, asheesh arya asheesharya...@gmail.comwrote: then suggest me some diffrent appraoch rather than broadcastreceiver to build my application . I can't, because you haven't explained what you're trying to do (beyond spy application) and what you're asking for help

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-18 Thread asheesh arya
Actually i am building spy application in which i need to run these broadcast recevier continously this is the building block of my application. can you suggest me how i acheive my goal to start my application continously after the device bootup. please provid eme some links or code. -- You

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-18 Thread David Olsson
Read up on the broadcast receivers and what they to, how they function etc. And please, format your questions so they are readable. To start a service at boot, check out: http://lmgtfy.com/?q=android+service+start+at+boot On Wed, Apr 18, 2012 at 1:49 PM, asheesh arya

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-18 Thread Kristopher Micinski
You understand that basically ..., there are thousands of people ensuring your app is impossible to write... correct? Kris On Wed, Apr 18, 2012 at 7:49 AM, asheesh arya asheesharya...@gmail.com wrote: Actually i am building spy application in which i need to run these broadcast recevier

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-18 Thread TreKing
On Wed, Apr 18, 2012 at 6:49 AM, asheesh arya asheesharya...@gmail.comwrote: Actually i am building spy application in which i need to run these broadcast recevier continously Aside from the hilarity of building spy application, I repeat: a broadcast receiver is not something that is run

[android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-17 Thread asheesh arya
hello evryone, In my application i built four broadcast receiver first to receive sms second to sending sms third to detect out going call and last to detect incoming call.now i want that these broadcast receiver running continously after device bootup in the background

Re: [android-developers] how to integrate broadcastreceiver functionality in service class

2012-04-17 Thread TreKing
On Tue, Apr 17, 2012 at 2:06 AM, asheesh arya asheesharya...@gmail.comwrote: now i want that these broadcast receiver running continously after device bootup in the background sucessfully A broadcast receiver is not something that needs to be running continously [sic] - it's something that