当前位置: 首页 > 工具软件 > zxing-lib > 使用案例 >

android zxing-1.6-core.jar,编译 ZXing

步浩壤
2023-12-01

第一步:准备包

http://code.google.com/p/zxing/ 下载

编译zxing

下载ant 地址http://ant.apache.org/

下载proguard 地址http://proguard.sourceforge.net/index.html#/downloads.html

解压:zxing-1.6

目录结构下:

zxing-1.6

-android

android-integration

core

build.properties

build.xml

........

第二步:配置环境变量。

打开build.properties

修改proguard 为你下载的proguard下的lib文件夹下的proguard.jar指向

android-home你的 sdk目录

proguard-jar=../proguard4.5.1/lib/proguard.jar 版本为4.4以上

android-home=../Android/android-sdk-windows

配置ant环境变量

ANT_HOME

E:MyLiBjavaANTapache-ant-1.8.1

PATH

E:MyLiBjavaANTapache-ant-1.8.1in

cmd 中ant回车出现

Buildfile: build.xml does not exist!

Build failed

表现成功!

第三步:开始编译

cd 到core目录 然后ant!

BUILD SUCCESSFUL

Total time: * second

表示成功编译!

然后编译android

cd ../android

ant

好了!有了核心包后我们可以就可以导入到项目工程里去了,现在是不是就不报错了!而且还可以直接运行的

ZXingTestActivity为其zxing运用的例子,这是学习zxing的一个很好的帮助!这个例子运行前提也是必需先安装BarcodeScanner3.5.apk

android 目录则是前篇我博客讲调用时必需安装的一个组件BarcodeScanner3.5.apk的源码。呵呵,我想大家就知道了,对了,

想不安装我们可以直接在源码上进行修改并进行编译,就ok了。

希望我的这几篇文章可以给大家有些帮助,也算引个方向,最后更深入学习代码,就只能看自己了!

大家肯定比我聪明,会很快读懂源码并很快应用起来,如有什么问题希望大家一起探讨学习,不断进步!

官网引用详细参见:

# Download and install the latest public Android SDK.

# Edit build.properties at the top level of the project, and change the android-home property to point to the SDK install location

# Download Proguard, version 4.4 minimum, and install it where you like.

# Edit build.properties and set proguard-jar to the full path (including the filename) of the ProGuard library.

# Build core; Note that core must be built without debug symbols to avoid an incompatibility between proguard and the Android tool chain:

cd core

ant clean build-no-debug

# Build android:

cd ../android

ant

 类似资料: