Re: [android-developers] Reduce Application Heap size

2011-10-07 Thread Karthik A
Thank you very much for your reply. Is there any other way to reduce like using command prompt, or API? On Thu, Oct 6, 2011 at 1:21 AM, TreKing treking...@gmail.com wrote: On Wed, Oct 5, 2011 at 5:32 AM, Karthik aykart...@gmail.com wrote: Actually i have to reduce the heap size. How to do

Re: [android-developers] Reduce Application Heap size

2011-10-07 Thread TreKing
On Fri, Oct 7, 2011 at 1:28 AM, Karthik A aykart...@gmail.com wrote: Is there any other way to reduce like using command prompt, or API? Um ... no. You allocate stuff. The heap grows proportional to how much you allocate. If you don't want it to grow that much, don't allocate that much. You

Re: [android-developers] Reduce Application Heap size

2011-10-07 Thread Karthik A
Thank you very much TreKing for your very useful immediate reply. On Fri, Oct 7, 2011 at 7:19 PM, TreKing treking...@gmail.com wrote: On Fri, Oct 7, 2011 at 1:28 AM, Karthik A aykart...@gmail.com wrote: Is there any other way to reduce like using command prompt, or API? Um ... no. You

[android-developers] Reduce Application Heap size

2011-10-05 Thread Karthik
Hi Guys, I am Karthik, am new of this forum, I have developed a Background Application(Not used more image files). which is having 3 services, each service is taking around 4MB heap size. Actually i have to reduce the heap size. How to do this? -- You received this message because you are

[android-developers] Reduce Application Heap size

2011-10-05 Thread Karthik
Hi Guys, I am Karthik, am new of this forum, I have developed a Android Background Application(Not used more image files). which is having 3 services, each service is taking around 4MB heap size. Actually i have to reduce the heap size. How to do this? -- You received this message because

Re: [android-developers] Reduce Application Heap size

2011-10-05 Thread TreKing
On Wed, Oct 5, 2011 at 5:32 AM, Karthik aykart...@gmail.com wrote: Actually i have to reduce the heap size. How to do this? Don't allocate as many objects ... ? - TreKing