You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Capacitor Wrapper for TextRecognition of Googles ML-Kit
Install
npm install @pantrist/capacitor-plugin-ml-kit-text-recognition
npx cap sync
Configuration
Android
Optional but recommended:
You can configure your app to automatically download the ML model to the device after your app is installed from the Play Store.
To do so, add the following declaration to your app's AndroidManifest.xml file:
<application ...>
...
<meta-dataandroid:name="com.google.mlkit.vision.DEPENDENCIES"android:value="ocr" />
<!-- To use multiple models: android:value="ocr,model2,model3" -->
</application>