I want to integrate the zxing barcode scanner into my app. I have followed the steps described here http://damianflannery.wordpress.com/2011/06/13/integrate-zxing-barcode-scanner-into-your-android-app-natively-using-eclipse/ . But the imported project won't build I receive errors that i should remove the @Override anottation and when I removed it says i should override. So is pretty confusing.The library project has these errors and i don't understand why because i followed the steps just as described in tutorial.
Asked
Active
Viewed 4,302 times
2 Answers
2
It seems you have different JAVA compiler. May be 1.5 or 1.7
Zxing uses 1.6 Java compiler.
try this
- Right click on project
- Properties > Java Compiler > Enable Project specific Settings (Check it)
- In front of "compiler compliances level" chose 1.6
- Clean the project
- and run again

Mohsin Naeem
- 12,542
- 3
- 39
- 53
0
You can download the ZXing Barcode code Scanner code from here.
Navigate to android folder for Android Zxing Scanner source.. After you import the Android Project , some Class file will be shows as missing you will get if you navigate to
core ->src->com->google->Zxing

Venky
- 11,049
- 5
- 49
- 66