Have you profiled your code? See if it's optimized? Any O(n^2) code parts that are eating up CPU time? Beyond that, check these if you haven't already.
1. Analyzing the memory usage of your Android application<http://kohlerm.blogspot.in/2009/04/analyzing-memory-usage-off-your-android.html> 2. Reducing Memory Usage in Android Applications<http://stackoverflow.com/questions/7113230/reducing-memory-usage-in-android-applications> 3. GPU acceleration in emulator - Issues<https://code.google.com/p/android/issues/detail?id=28515> 4. How can I fix frequent Out Of Memory Errors on Android emulators?<http://stackoverflow.com/questions/17537038/how-can-i-fix-frequent-out-of-memory-errors-on-android-emulators> If you're using the Intel based emulators: Understanding GPUs on Android* for the Intel® Atom™ Processor<http://software.intel.com/en-us/articles/intel-for-android-developers-learning-series-10understanding-gpus-on-android-for-the-intel> Not sure if this one will help: Android Performance Case Study<http://www.curious-creature.org/2012/12/01/android-performance-case-study/> Now, I'm not a very experienced Android developer, neither do I have much experience in optimizing for an application's memory complexity. But these are the directions I would generally go in if I were in your place. Sorry if you've done that already. On Wednesday, August 14, 2013 12:46:49 PM UTC+5:30, Mike Yeh wrote: > > Dear Sirs, > > I used SDK API level 17 to test OpenGL application. > Currently I feld that the emulator with GPU support is much unstable after > running some applications. > When I monitored the ProcessExplorer I found that the memroy usage was > kept on raising after running an application. > Does anyone know how to solve this problem ? At least not let it run out > of the memory. > > TKS in advance. > > Best Regards, > MIKE > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en --- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

