Skip to content Skip to sidebar Skip to footer

Freshly Imported Android Studio Project Errors With Zxing Module

I have been using zxing module as an android library for some time without problems. I have imported my Eclipse project into Android Studio (which I use for everything else!) and t

Solution 1:

I don't really know the zxing framework, but have you tried to use the maven artifact instead of referencing a module?

If you want to use the artifact add this to the dependencies of the project/module that uses zxing: compile 'com.google.zxing:core:3.1.0'

Edit: You said you imported the project from eclipse; I'm in the middle of transitioning to gradle and the import function hardly produces anything useful if the eclipse project contained references to library projects (not jar's). I rebuild my projects from scratch by creating a new app(with modules) in Android Studio and copy/paste code and resources into the new app's directories

Post a Comment for "Freshly Imported Android Studio Project Errors With Zxing Module"