ml-kit -barcode-scanning android - Google code scanner

nfg76nw0  于 2023-06-04  发布在  Android
关注(0)|答案(1)|浏览(187)

我正在使用谷歌代码扫描仪Android MLKit进行条形码扫描。我使用下面的依赖关系。我想使用捆绑模型,以便初始化时间不采取应用程序启动时。有没有办法可以使用捆绑版本的模型:
请在下面找到我用于此的依赖项:

implementation 'com.google.android.gms:play-services-code-scanner:16.0.0'
AndroidManifest:

当我使用上述依赖项时,我在下载模型时看到以下异常:正在等待下载Barcode UI模块。
有没有一种方法可以让我使用捆绑版本的模型,这样我就不需要等待条形码用户界面模块被下载。关于这件事请帮帮我
谢谢你在前进。

jjhzyzn0

jjhzyzn01#

这个怎么样:

dependencies {
  // ...
  // Use this dependency to bundle the model with your app
  implementation 'com.google.mlkit:barcode-scanning:17.1.0'
}

地址:https://developers.google.com/ml-kit/vision/barcode-scanning/android

相关问题