4

Just got error report at Google Play (ex. Android Market) publisher interface.

Here is full stacktrace:

java.lang.OutOfMemoryError: [memory exhausted] at dalvik.system.NativeStart.main(Native Method)

That's it. As far as I understand it crashed without even reaching my code. Is there something I should do or should I simply ignore this error? How could this happen?

Insomniac
  • 3,354
  • 2
  • 23
  • 24

3 Answers3

4

Ignore it, there's nothing you can do. In some cases, you'll get an OutOfMemoryError with a reasonable stack trace. These are actionable. What you've pasted isn't.

Edward Dale
  • 29,597
  • 13
  • 90
  • 129
2

I think it is an error not related to your app. It is related to the system (phone system) not able to handle the processes running on it in terms of memory. And your process gets selected to be the victim to kill.

iTurki
  • 16,292
  • 20
  • 87
  • 132
-1

Perhaps You would have forgot add your destination activity in manifest file. Adding Activity in Manifest Worked for me.