In my Android project I'm using barcodescanner.
I need to customize the size of the framing rectangle displayed when targeting a qr code and I noticed that the only way to achieve this is to modify a class in the library.
Now I'm wondering, what is the best way to include the changes I made to the library?
It would be great if I could simply include the class with the original package in my sources as I used to do in some java projects, however in Android I get an error:
com.android.dex.DexException: Multiple dex files define Lme/dm7/barcodescanner/core/ViewFinderView;
because it finds 2 classes with the same signature (1 in the library and 1 in my source code).
Is there a way to avoid this conflict? Or are there better ways to include the 3rd party library with the changes?