How to convert a library project into a jar

Can someone tell me about the steps to convert a library project into a bank.

+1
source share
3 answers

in eclipse select your library project

1:right click on project 
2: select export
3:java then jar

enter image description here

+8
source

Rightclick to Project>export>Java>jarfileselect files and the finished jar.

Make sure the library project files do not conflict with another project file. ex Manifest.xmlyour library manifest may contain activity that is already present in the project manifest (your banner).

+3
source
  • > > Java > jarfile
  • Manifest.xml
  • /res
0

All Articles