http://stackoverflow.com/questions/17063826/how-to-create-jar-for-android-library-project
This works!
- Make your library project a normal project by deselecting IsLibrary flag.
- Execute your project as Android Application. (It will not show any error)
- You'll find a .jar file in bin folder along with .apk.
- Give you .jar who want to use your library.
- Tell them to just import external jar into build path.
This will work fine with all the resources. Thanking you all. for your responce