My Android app serializes objects (with ObjectOutputStream
). Each time I deserialice one (with ObjectInputStream
), I get lots of debug messages like this:
01-20 06:44:22.274: D/dalvikvm(2204): GetFieldID: unable to find field Ljava/util/HashMap;.loadFactor:F
This happens in Android 2.3 but not 4.2. Coincidentally, performance in Android 2.3 is quite bad and the app gets out of memory quickly.
What does this warning mean exactly? Is there anything I can do to avoid it?