Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have checked out the source of zxing from the svn,I would like to import the source to eclipse IDE so I can examine the code and then make my project that uses zxing.

How can I import the source?

if I go file->import->existing project into workspace eclipse doesnt seem to find the project!

also do I have to import the project to the workspace or simply add some libraries to my project in order to use it I am confused!

share|improve this question

2 Answers

Here is a complete tutorial on how to do it... http://damianflannery.wordpress.com/2011/06/13/integrate-zxing-barcode-scanner-into-your-android-app-natively-using-eclipse/

Stick to it and it should work...

share|improve this answer

isn't it better to just install the app Barcode Scanner rather then copy some parts? When done that you could call it via an Intent like this:

Intent intent = new Intent("com.google.zxing.client.android.SCAN");
intent.putExtra("SCAN_MODE", "QR_CODE_MODE");
startActivity(intent);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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