I’m developing tab base android application using maven-android-plugin, i need to share the same code base and resources to several applications, so what i did was make the project as library project and reference it to other projects.
Ref:http://code.google.com/p/maven-android-plugin/wiki/ApkLib
Now i need to add more functionality to the activities.so what i did copy the activity from library project and put into the reference project with the same package name,When i run the build i’m getting “duplicate class error”,for resources this work fine.
how can i add more functionality to activity (coming from library project)
sam
I could think of the following: