华为SDK二维码识别
Posted 码农乐园
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了华为SDK二维码识别相关的知识,希望对你有一定的参考价值。
项目需要使用扫码二位码,看人家产品为啥识别那么快,android zxing库如何优化,又要改项目进度我难道需要加班帮老板搞项目,啊 不想加班。。。
想不加班又能用上和大厂一样的二维码识别,项目看看华为的sdk,集成之后是如何做到的呢。
集成步骤:
a) 下载配置文件“agconnect-services.json”。
b) 将Android Studio切换到项目视图
c) 将“agconnect-services.json”添加到模块根目录下(参见下图)
在Gradle文件中设置AppGallery Connect的Gradle插件以及AppGallery Connect SDK基础包。
a) 设置项目级 build.gradle
allprojects {
repositories {
// Add the Maven address.
maven {url 'https://developer.huawei.com/repo/'}
}
}
...
buildscript{
repositories {
// Add the Maven address.
maven { url 'https://developer.huawei.com/repo/' }
}
dependencies {
// Add dependencies.
classpath 'com.huawei.agconnect:agcp:1.3.1.300'
}
}
b) 设置模块级 build.gradle
dependencies {
// Add dependencies.
implementation 'com.huawei.agconnect:agconnect-core:1.3.1.300'
}
...
// Add the information to the bottom of the file.
apply plugin: 'com.huawei.agconnect'
github 地址https://github.com/HMS-Core/hms-scan-demo
以上是关于华为SDK二维码识别的主要内容,如果未能解决你的问题,请参考以下文章