android zxing 集成过程,如何将ZXing Library集成到Android Studio进行条形码扫描?

您需要在build.gradle文件中添加以下内容:

repositories {

mavenCentral()

maven {

url "http://dl.bintray.com/journeyapps/maven"

}

}

dependencies {

// Supports Android 4.0.3 and later (API level 15)

compile 'com.journeyapps:zxing-android-embedded:2.0.1@aar'

// Supports Android 2.1 and later (API level 7), but not optimal for later Android versions.

// If you only plan on supporting Android 4.0.3 and up, you don't need to include this.

compile 'com.journeyapps:zxing-android-legacy:2.0.1@aar'

// Convenience library to launch the scanning and encoding Activities.

// It automatically picks the best scanning library from the above two, depending on the

// Android version and what is available.

compile 'com.journeyapps:zxing-android-integration:2.0.1@aar'

// Version 3.0.x of zxing core contains some code that is not compatible on Android 2.2 and earlier.

// This mostly affects encoding, but you should test if you plan to support these versions.

// Older versions e.g. 2.2 may also work if you need support for older Android versions.

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

}

我的build.gradle文件如下所示:

apply plugin: 'com.android.application'

android {

compileSdkVersion 21

buildToolsVersion "21.1.2"

defaultConfig {

applicationId "com.myapplication2"

minSdkVersion 16

targetSdkVersion 21

versionCode 1

versionName "1.0"

}

buildTypes {

release {

minifyEnabled false

proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

}

}

}

repositories {

mavenCentral()

maven {

url "https://raw.github.com/embarkmobile/zxing-android-minimal/mvn-repo/maven-repository/"

}

}

dependencies {

compile fileTree(dir: 'libs', include: ['*.jar'])

compile 'com.android.support:appcompat-v7:21.0.3'

// Supports Android 4.0.3 and later (API level 15)

compile 'com.embarkmobile:zxing-android-minimal:2.0.0@aar'

// Supports Android 2.1 and later (API level 7), but not optimal for later Android versions.

// If you only plan on supporting Android 4.0.3 and up, you don't need to include this.

compile 'com.embarkmobile:zxing-android-legacy:2.0.0@aar'

// Convenience library to launch the scanning and encoding Activities.

// It automatically picks the best scanning library from the above two, depending on the

// Android version and what is available.

compile 'com.embarkmobile:zxing-android-integration:2.0.0@aar'

// Version 3.0.x of zxing core contains some code that is not compatible on Android 2.2 and earlier.

// This mostly affects encoding, but you should test if you plan to support these versions.

// Older versions e.g. 2.2 may also work if you need support for older Android versions.

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

}

代码为here。

另外,如何使用它,请参考我的答案在Stackoverflow here

它包含我已经测试的方法和简单的代码。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值