Re: [android-developers] Common code reuse

2010-05-10 Thread Max Gilead
As Mark said, resources are going to be an issue. For code though there's a simple way which would allow you to edit the shared code on the fly. Create a standard Android project and manually remove Android nature from its .project file (it you do this from inside Eclipse it'll all get automatical

Re: [android-developers] Common code reuse

2010-05-07 Thread Mark Murphy
Ajay wrote: > Hi, >I have a set of common code (including .java files and resources) , > which I have to use for two similar applications with different > package names (for different vendors). How can I maintain two packages > which share the common code without making two copies of the common

[android-developers] Common code reuse

2010-05-07 Thread Ajay
Hi, I have a set of common code (including .java files and resources) , which I have to use for two similar applications with different package names (for different vendors). How can I maintain two packages which share the common code without making two copies of the common source? Thank you, A