I'm writing an Android app, and would like to have a Lite and Pro version. The application itself would largely be the same for the Lite and Pro version, the main difference being that the Pro version would have a widget for convenience purposes. Obviously, I would like to reuse the code, drawables and layout files for the common parts in both applications, without having to create to projects. I thought I would be able to create two application tags in the manifest file, one without and one with the receiver for the widget. However, I don't see how I could create two packages from this. Is there a way to accomplish what I try to do? Am I looking in the correct direction, or are there more efficient ways?
I could of course create a common java package that I can reuse, but then I would still need two separate projects with the same drawables and layout.
Any ideas?
Bart