问题
I have downloaded the zxing 2.2 code from the below link
https://code.google.com/p/zxing/downloads/list
My requirement is to import the "core" project into eclipse and add few code into it. then mark it to be library project.
I want to include this library project into barcode scanner sample app and use the barcode scanner app as library from my project.
回答1:
Solved
prerequisties download latest zxing package.
Process 1
- create a java project in eclipse.and name it to something like ZxingCore.
- copy and paste complete src folder inside core folder.
- In case you need to edit any code, you can do it. otherwise skip this step.
- Java library is ready to be used.
[Note: Compile Java project using Java 1.6 to get rid of run time exceptions]
Process 2
- In eclipse select Create a android project from existing source.
- browse your zip file for android folder[this is a sample project bundeled with the library] your project should be imported with few errors
- The actual core library is missing, We should add the ZxingCore library from process 1
- right click project -> properties -> JavaBuildPath(from left pane) -> project tab -> add -> check ZxingCore - Ok.
- All the errors should have gone now. it time to make the barcode scanner app to be a library project
- right click project -> properties -> android(from left pane) -> check isLibrary -> apply -> OK.
- Now you will get errors in some switch case statements. Convert the problematic switch case statements to it..elseif
- Your library project is ready
- for those who want to run the barcode scanner as a stand alone app skip the steps 5,6,7,8
来源:https://stackoverflow.com/questions/19268159/zxing-2-2-import-as-a-library-projectnot-jar-in-eclipse