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

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

Zxing 的集成 ---- Maven 对应 Gradle 的写法

刚刚想耍耍二维码,想到了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'}

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

转载于:https://www.cnblogs.com/didikee/p/6926337.html

你可能感兴趣的文章
Effective C++_笔记_条款03_尽可能使用const
查看>>
对称矩阵与压缩存储算法(java实现)
查看>>
C# ListView解读
查看>>
常用的四种设计模式 PHP代码
查看>>
释放linux的buff/cache
查看>>
ubuntu 4.10~5.10 :古老的ubuntu上安装oracle10g的情况
查看>>
hdu4063(圆与圆交+线段与圆交+最短路)
查看>>
hdu 1011(树形DP)
查看>>
call 大佬 help7——kmp 补齐 循环节
查看>>
[网络流24题] 方格取数问题 (最大点权独立集)
查看>>
EVENT
查看>>
MySQL添加用户、删除用户与授权
查看>>
pthon/零起点(一、集合)
查看>>
字符串比较
查看>>
WTM_LayUI 二级联动
查看>>
flush caches
查看>>
anjular2以及微信小程序的一点比较
查看>>
博客收藏
查看>>
SQL Server优化常用SQL语句
查看>>
[持续交付实践] pipeline使用:Multibranch Pipeline
查看>>