I'm trying to implement a tutorial using ZXing to read QRCode .
In the tutorial that was accompanying it uses the Eclipse and places the libs of ZXing all "by hand" by importing. I'm using Android Studio and I used Gradle
to generate the dependencies.
But there comes a point when it edits a lib class of ZXing as it is necessary after taking the QRCode photo to return to ActivityMain
to show the result, otherwise it will stop at Activity
of the camera.
My questions are:
- I can not find where
Gradle
lowers dependencies for me to edit. - Is there any other way to make sure that after reading QRcode the
Activity
%?
Here is the code as implemented.