On Aug 5, 10:11 am, Alex G <quixop...@googlemail.com> wrote:
> Thanks, I'll give that a try. Is it only the case that you need a
> single project if you have a third party library? The reason I ask is
> that all of the blogs and discussions I have found about unit testing
> have advocated using two projects.

Having two copies of the same class will sometimes cause you grief.
"dexopt" does various optimizations with the copy it finds, so if you
manage to use a different copy at run time the VM will throw an
exception (the optimizations can't be re-done on the fly to factor in
differences between the two versions of the class).

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to