I am following this answer for the use of a perzonalized layout
summarizing the amount of all libraries
maven {
url "https://raw.github.com/embarkmobile/zxing-android-minimal/mvn-repo/maven-repository/"
}
compile 'com.google.zxing:core:3.2.1'
compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
compile 'com.embarkmobile:zxing-android-minimal:2.0.0@aar'
compile 'com.embarkmobile:zxing-android-integration:2.0.0@aar'
compile 'com.google.zxing:core:3.0.1'
And in my Class
IntentIntegrator scanIntegratorCI = new IntentIntegrator(this);
scanIntegratorCI.addExtra("PROMPT_MESSAGE", "Lea el codigo QR correspondiente al CashIn");
scanIntegratorCI.setCaptureLayout(R.layout.custom_layout_rq);
scanIntegratorCI.initiateScan();
This is all correct, I generate a QR with the app I can read it extract the data etc, but the method setCaptureLayout
appears as if it does not exist, and I do not see how to customize the xml according to the official documentation
So I do not know why you do not let me use this method any help is welcome