1

我正在尝试使用 android ML Kit 文本识别库进行文本识别,但在运行时出现错误并且没有返回文本。错误:

W/TextNativeHandle: Native handle not yet available. Reverting to no-op handle.
W/DynamiteModule: Local module descriptor class for com.google.android.gms.vision.dynamite.ocr not found.
I/DynamiteModule: Considering local module com.google.android.gms.vision.dynamite.ocr:0 and remote module com.google.android.gms.vision.dynamite.ocr:0
W/DynamiteModule: Local module descriptor class for com.google.android.gms.vision.ocr not found.
I/DynamiteModule: Considering local module com.google.android.gms.vision.ocr:0 and remote module com.google.android.gms.vision.ocr:0
E/Vision: Error loading optional module com.google.android.gms.vision.ocr: com.google.android.gms.dynamite.DynamiteModule$LoadingException: No acceptable module found. Local version is 0 and remote version is 0.

我已将 build.gradle 中的库导入为:

    implementation 'com.google.android.gms:play-services-mlkit-text-recognition:16.1.1'

我还在 android 清单文件中添加了以下代码:

        <meta-data
        android:name="com.google.mlkit.vision.DEPENDENCIES"
        android:value="ocr" />

那我该如何使用 ML Kit 文本识别呢?

4

1 回答 1

0

ML Kit 中的底层文本识别库位于一个“可选模块”中,必须由 Google Play Services 下载;在这发生之前,您会收到您描述的错误消息。似乎有什么东西阻止了可选模块的下载——可能是网络问题,或者磁盘空间不足。不幸的是,很难进一步远程调试该问题。

于 2020-09-14T11:54:45.747 回答