0

I'm developing a puzzle app that has a LOT of graphics. It was giving me a lot of memory errors. I'm now nulling out all the bitmap pointers, which seemed to fix the problem.

The ap runs find if I run if for a very long time, but...... after I run it for about 6 times, it will no longer run from the Eclipse IDE. I get a " INSTALL_FAILED_INSUFFICIENT_STORAGE" error. I can't find any memory links (now logging the free memory). Any ideas?

Ted pottel
  • 6,869
  • 21
  • 75
  • 134

2 Answers2

0

You can increase the Android emulator memory capacity. The link can be helpful - Solution to INSTALL_FAILED_INSUFFICIENT_STORAGE error on Android .

Community
  • 1
  • 1
Pawel
  • 1,457
  • 1
  • 11
  • 22
0

It is not a memory leak, you have a less disk storage. You have to check storage available on your mobile/emulator. Try delete/uninstall unnecessary files/application. If your using emulator then increase its storage.

Jaiprakash Soni
  • 4,100
  • 5
  • 36
  • 67
  • Hi, the error is on the device. So my program should be bug free??? I'm assuminbg you cannot fix this issue on the device just the emulator?????? – Ted pottel Aug 30 '13 at 14:57
  • Yes your programm is bug free. As you are testing on device so you have to uninstall some other application so that your application can get sufficient storage to install. – Jaiprakash Soni Sep 02 '13 at 04:07