Zxing 的集成 ---- Maven 對應 Gradle 的寫法

Zxing 的集成 ---- Maven 對應 Gradle 的寫法

剛剛想耍耍二維碼,想到了zxingzbar,又想到zxingGoogle老爹的,想一想就算了吧,雖然zbar快可是識別錯誤率也高很多.隨手Google了下*zxing 集成*好像都是說什麼拷貝項目到本身的工程中,我不信Gradle集成這麼方便了爲什麼不用.因而我來到zxing的 Github 主頁 https://github.com/zxing/zxing,在README的引導下來到Get Start頁面,裏面有以下說明:java

Maven

core/, 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:

<dependencies>
  ...
  <dependency>
    <groupId>com.google.zxing</groupId>
    <artifactId>core</artifactId>
    <version>(the current version)</version>
  </dependency>
</dependencies>

雖然沒說明 Gradle 如何集成,可是發佈過lib到jcenter的應該知道,mavenGradle的關係.android

上面maven倉庫信息對應的Gradle爲:git

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

compile '<groupId>:<artifactId>:<version>'

記起來也很簡單,就是把上面三個參數用:鏈接便可.github

其中 version對應版本有不少,建議使用最新的,我如今看到最新的Release版本爲3.3.0.app

因此在 Android studio 的工程 Modulebuild.gradle下添加一行依賴便可:maven

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'
}

其餘的項目集成以此類推.gradle

相關文章
相關標籤/搜索