I'm writing this in mere desperation :) I've been assigned to make a standalone barcode scanner (as a proof of concept) to an Android 1.6 phone.

For this i've discovered the ZXing library.

I've googled, read related topics here on StackOverflow used common sence and so forth. Nothing seemed to have helped, and i just can't punch a hole on this mentale blockade :/

I know it to be possible, to use the lib, and create your own standalone barcode scanner. I've read that using the "Barcode Scanner" provided by the Zxing folks, is by far the easiest solution (via Intent). Unfortunately this is not an option, and a standalone app is desired.

So to sum up my problem :

  1. How to integrate ZXing source lib into my Android Code project through Eclipse?
  2. When integrated ... how to make use of the lib, to "load" the scanning function?
  3. A step to step guide is almost prefered because i just started working in Eclipse.

I've tried to make my code project dependant of the Android folder from the ZXing source folder. When i do so, a handfull errors emerge, mostly concerning 'org.apache' (??)

I just can't figure it out ... so a few hints would be most helpfull.

In advance, thank you :)

link|improve this question
Cool, glad you figured it out. I would recommend adding your SOLVED+GUIDE section as an answer instead of as a section of the comment. Then mark that answer as "Accepted." – Scott W Jan 26 '11 at 15:12
It is hereby done :D Thanks for the tip ;) Hard to be a noob :P – AppDev Jan 28 '11 at 7:19
I believe what you wanted to do is found here: stackoverflow.com/questions/4854442/… – Danny Remington - MacroSolve Oct 5 '11 at 14:55
This was exactly was I needed to read!! Now it all works like a charm. Thank you! – DNRN Oct 11 '11 at 12:14
feedback

5 Answers

up vote 36 down vote accepted

UPDATE! - SOLVED + GUIDE

I've managed to figure it out :) And down below you can read step-by-step guide so it hopefully can help others with the same problem as I had ;)

  1. Install Apache Ant - (See this YouTube video for config help)
  2. Download the ZXing source from ZXing homepage and extract it
  3. With the use of Windows Commandline (Run->CMD) navigate to the extracted directory
  4. In the commandline window - Type 'ant -f core/build.xml' press enter and let Apache work it's magic [having issues?]
  5. Enter Eclipse -> new Android Project, based on the android folder in the directory you just extracted
  6. Right-click project folder -> Properties -> Java Build Path -> Library -> Add External JARs...
  7. Navigate to the newly extracted folder and open the core directory and select core.jar ... hit enter!

Now you just have to correct a few errors in the translations and the AndroidManifest.xml file :) Now you can happily compile, and you will now have a working standalone barcode scanner app, based on the ZXing source ;)

Happy coding guys - I hope it can help others :)

link|improve this answer
Great writeup! Can you add some detail on what you edited in the AndroidManifest.xml file? I don't see any errors in that file upon examination. Thanks! – Brian Armstrong May 26 '11 at 5:44
2  
There aren't errors in the AndroidManifest.xml file, nor the translations. There are compatibility problems in the latest Android SDK, however. If you use it you have to use later source code from SVN. – Sean Owen Jun 3 '11 at 21:12
Hi, I was trying to develop another application for QR scanning as a standalone app without using any QR Droid or Barcode Scanner app. Are the steps you mentioned for doing just that or you still are using some other app via intents or anything? – kumar Jul 27 '11 at 10:56
These steps are doing just that. I currently work on a solution to integrate ZXing as external library into an app. – Mario Fraiß Apr 5 at 19:13
The zip package from code.google.com/p/zxing/downloads/list contains "core" directory as well as "android" and "android-integration". What is the reason why you used "core"? – Michał K Apr 9 at 15:09
show 1 more comment
feedback

Having issues building with ANT? Keep reading

If ant -f core/build.xml says something like:

Unable to locate tools.jar. Expected to find it in
C:\Program Files\Java\jre6\lib\tools.jar

then set your JAVA_HOME environment variable to the proper java folder. I found tools.jar in my (for Windows):

C:\Program Files\Java\jdk1.6.0_21\lib

so I set my JAVA_HOME to:

C:\Progra~1\Java\jdk1.6.0_25

the reason for the shorter syntax I found at some site which says:

"It is strongly advised that you choose an installation directory that does not include spaces in the path name (e.g., do NOT install in C:\Program Files). If Java is installed in such a directory, it is critical to set the JAVA_HOME environment variable to a path that does not include spaces (e.g., C:\Progra~1); failure to do this will result in exceptions thrown by some programs that depend on the value of JAVA_HOME."

I then relaunched cmd (important because DOS shell only reads env vars upon launching, so changing an env var will require you to use a new shell to get the updated value)

and finally the ant -f core/build.xml worked.

link|improve this answer
1  
Copying tools.jar to C:\Program Files\Java\jre6\lib also worked for me.. – Onuray Sahin Nov 11 '11 at 12:21
feedback

Have you seen the wiki pages on the zxing website? It seems you might find GettingStarted, DeveloperNotes and ScanningViaIntent helpful.

link|improve this answer
Sorry ... it was not quite the help i was looking for :) But today i had a breakthrough :P I managed to figure it out myself ;) A guide for other viewers, with the same problem, will be posted shotly :) – AppDev Jan 26 '11 at 13:37
feedback

I followed this tutorial and found it great:

http://damianflannery.wordpress.com/2011/06/13/integrate-zxing-barcode-scanner-into-your-android-app-natively-using-eclipse/

it tells you all the steps you have to follow to build the zxing project yourself and import as a library in any project.

Plus it has a discussion about the benefits and drawbacks of doing this instead of using the apk via intent...

link|improve this answer
feedback

The zxing guys have made it easier to create a android project with 1.7. Its not as painful as it used to be. This is a quick blog for anyone who would like to create a zxing project for android quickly.

  • Checkout the zxing sources from zxing.org
  • Create a Android project on your eclipse
  • Delete main.xml
  • Right click on “src” directory and hit import. Browse to the following directories in the order mentioned. As you add them for import one by one, ensure that you have the src directory in the edit field of the import wizard. And that you select only the “com” directory on the left directory tree. Do not select src.
  • core
  • android-integration
  • android
  • Ensure that your android sdk version is 9, anything lesser and androidmanifest.xml will cry.
  • Strings.xml in one of the languages will crib, just put a / before the ‘ character

A android project for zxing 1.7 (June 20 checkout).

http://www.4shared.com/file/bFx8Y5Ys/zXingJune2010.html

link|improve this answer
feedback

protected by Community Dec 16 '11 at 0:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.