博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Zxing 的集成 ---- Maven 对应 Gradle 的写法
阅读量:5973 次
发布时间:2019-06-19

本文共 1454 字,大约阅读时间需要 4 分钟。

刚刚想耍耍二维码,想到了zxingzbar,又想到zxingGoogle老爹的,想想就算了吧,虽然zbar快但是识别错误率也高不少.随手Google了下*zxing 集成*好像都是说什么拷贝项目到自己的工程中,我不信Gradle集成这么方便了为何不用.于是我来到zxing的 Github 主页 ,在README的引导下来到Get Start页面,里面有如下说明:

Mavencore/, javase/, android-integration and zxingorg can be used directly in a Maven-based project without any download or installation. Instead, add as dependencies from groupID com.google.zxing artifactIDs core, javase, android-integration or zxingorg:
...
com.google.zxing
core
(the current version)

虽然没说明 Gradle 如何集成,但是发布过lib到jcenter的应该知道,mavenGradle的关系.

上面maven仓库信息对应的Gradle为:

compile 'com.google.zxing:core:3.3.0'compile '
:
:
'

记起来也很简单,就是把上面三个参数用:连接即可.

其中 version对应版本有很多,建议使用最新的,我现在看到最新的Release版本为3.3.0.

所以在 Android studio 的工程 Modulebuild.gradle下添加一行依赖即可:

dependencies {    compile fileTree(dir: 'libs', include: ['*.jar'])    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support:support-v4:25.3.1' compile 'com.android.support:design:25.3.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' testCompile 'junit:junit:4.12' //添加 zxing compile 'com.google.zxing:core:3.3.0' }

其他的项目集成以此类推.

http://www.cnblogs.com/didikee/p/6926337.html

 

你可能感兴趣的文章
BGP选路原则与专有命令的研究
查看>>
关于java的引用、C++的指针、引用的深入分析
查看>>
windows cmd 下的主要命令
查看>>
CMD 修改Host文件 BAT
查看>>
linux用户管理的命令及手动添加用户
查看>>
Windows 7 家庭版如何启用Administrator账户
查看>>
JSP开发过程遇到的中文乱码问题及解决方案
查看>>
我的友情链接
查看>>
mfs权威指南
查看>>
只是你没那么重要罢了
查看>>
javabean的初步认识学习
查看>>
表结构设计的第一二三范式
查看>>
1.4.2.2 在Linux上设置环境变量
查看>>
SSM三大框架整合详细教程(Spring+SpringMVC+MyBatis)【转】
查看>>
自建框架知识点二路由器
查看>>
springBoot(16):集成redis
查看>>
我的友情链接
查看>>
使用 lsof 查找打开的文件
查看>>
nagios监控iostat
查看>>
为什么要写案例?
查看>>