Currently I have a working android project1 developed in Eclipse, it contains 2 packages, say package A and package B. I am developing a new android application which I can reuse the package B source code without any modification. I have tried to copy the package B src directory into the project2 src code directory directly. when I start the App, I am getting error on "Link of class in package B prject1 failed". Is this the correct way to reuse existing code, or is there a better way to accomplishing this task? Thanks in advance...
To summarize:
project 1: package A and package B.
project 2: package C and package B.
Need to move package B src code into project 2.