I am trying to restructure an existing app so that, except for a few override-able methods in a derived activity, all code will reside in a library. This still doesn't work for some reason, but in the process of attempting to troubleshoot this, I discovered much to my dismay that there are two .apk files installed, not one (when I run a debug session from eclipse):
- The first (and larger file) is having the original library name.
- The second (only 20KB in size) is having the derived application name.
Why is that and where can I learn more about this?
Could that explain the ClassNotFoundException problem I am having?