Hi I have an application that once it recieves a sms, it has to start collecting the location of the user every 1 minute. Everything starts ok i.e. if I send a text, then the sms processing wakes up and calls the location service to start collecting the location every 1 minute. But after some 30 minutes or so, my application crashes because of memory. I used heap in DDMS and observed the memory which keeps on increasing as time goes i.e. the size of the data object keeps getting higher. I also used the allocation tracker to see if there is any leak in my code and observed all the objects are that being created in my code are getting cleared. I am not sure where I am leaking. Please help me understand is this a memory leak? If yes, how can I find where the memory leak is? IF this is not a memory leak, how can I make the application run infinitely until I stop it.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Take a look at a post that I had recently. I was new to finding memory leaks and the info in this post helped me to find all of my memory leaks and squash them: Android - Many OutOfMemoryError exceptions only on single Activity with MapView |
|||
|
|