TextRecognizer isOperational API始终返回false(TextReco

2019-09-27 11:51发布

我需要这样我使用捕捉图像的文字TextRecognizer 。 我下面的代码给出

TextRecognizer textRecognizer = new TextRecognizer.Builder(mActivity.getGalleryApplication().getAndroidContext()).build();
if (!textRecognizer.isOperational()) {
    new AlertDialog.Builder(mActivity.getAndroidContext())
                                        .setMessage("Text recognizer could not be set up :(").show();
    return;
}
textRecognizer.release();

我已经添加了如下的build.gradle依赖关系:

    dependencies {
        compile 'com.google.android.gms:play-services-maps:10.2.1'
        compile 'com.google.firebase:firebase-appindexing:10.2.1'
        compile 'com.android.support:appcompat-v7:23.0.0'       
    }

每次我启动APK,“文本识别器无法设置:显示尽管我已经设置所有的依赖,但仍然我得到这个错误,请帮忙为什么。 TextRecognizer.isOperational()始终是假的。

我必须于下周完成的项目。 请帮助解决这个错误。

Answer 1:

我发现回答我的问题。

我们需要在命令提示符下应用下面的命令。 然后,问题解决了。

adb root
adb remount
adb shell setenforce 0  it will disable SE policy 
adb remount


文章来源: TextRecognizer isOperational API always returns false