On Feb 25, 9:16 pm, jj <[email protected]> wrote: > In my logcat following messages, anybody clear me what is meaning of > thismesg > > D/dalvikvm( 245): DexOpt: 'Lorg/xmlpull/v1/XmlPullParser;' has an > earlier definition; blocking out > D/dalvikvm( 245): DexOpt: 'Lorg/kxml2/io/KXmlParser;' has an earlier > definition; blocking out
It means that class is defined twice in the set of classes that "dexopt" can see. Since dexopt can't know which version will be used at runtime, it will not optimize references to those classes. It means that space is being wasted on redundancy, and the system is running less efficiently than it could, so it generates a Debug-level message. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

