Chenxi Song
Chenxi Song
To > To fix this issue with dynamic feature modules, add > implementation 'com.google.mlkit:barcode-scanning:16.2.0' > to both build.gralde files in feature module and the base app module If you are...
Hi, which version of the TextRecognition sdk did you use? The support for dynamic feature delivery was added in 16.2.0.
I tested with 'com.google.mlkit:playstore-dynamic-feature-support:16.0.0-beta1' in the base apk and 'com.google.android.gms:play-services-mlkit-text-recognition:16.3.0' in the dynamic feature module apk but could not repro your issue. Do you have your project hosted somewhere for...
Yes, thanks for bringing this up! We had it planned but didn't have cycle to get to it. We will give an update here shortly once we have a concrete...
After you get the bounding box from the text recognizer API, you can draw a custom view within the bounding box and then implement the OnClickListener for it. xxxView.setOnClickListener(object :...
Have you tried to draw the bounding box in different GraphicOverlays instead of adding them to the same one(view)?
Hi, we are working on a fix internally.
Have you tried to [remove the old installed apk](https://stackoverflow.com/questions/19070816/failure-install-failed-invalid-apk) and then install this one?
Oh, did you only move the dependency to base module but not the code reference? In order for MLKit to work, you will need to have all code+dependency using MLKit...