An update on the ZXingBarcodeReader tutorial.

git-svn-id: https://zxing.googlecode.com/svn/trunk@1591 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
ftylitak@gmail.com 2010-09-15 20:50:09 +00:00
parent d6d026e3dd
commit 9fd3d18ee3

View file

@ -38,6 +38,29 @@ button is selected and press OK.
Now go "Project->Build Project" and if everything goes right, you will have 2 installation files
in "ZXingBarcodeReader\sis" folder. Install the .sisx file to your device and you are ready.
== Deploying specificaly to S60 3rd edition ==
Deploying the project to a S60 3rd edition requires one more step (executed only once).
After the installation of OpenC/C++ plug-in, the installation files contained in the following folders
have to be installed to the device:
S60 SDK root folder \ nokia_plugin \ openc \ s60opencsis
and
S60 SDK root folder \ nokia_plugin \ opencpp \ s60opencppsis
If this step is not taken, the application will be able to be installed to the device but it WILL NOT RUN!
When deploying to S60 5th edition, this step is not required because the plug-in is integrated into it already.
------ Optional when deploying to S60 3rd edition ------
To integrate the installation files to the project installation file just put the following lines to the .pkg file:
@"$(EPOCROOT)Epoc32\..\nokia_plugin\openc\s60opencsis\pips_s60_1_6_SS.sis", (0x20013851)
@"$(EPOCROOT)Epoc32\..\nokia_plugin\openc\s60opencsis\openc_ssl_s60_1_6_SS.sis",(0x200110CB)
@"$(EPOCROOT)Epoc32\..\nokia_plugin\openc\s60opencsis\openc_glib_s60_1_6_SS.sis",(0x200110CC)
@"$(EPOCROOT)Epoc32\..\nokia_plugin\opencpp\s60opencppsis\STDCPP_s60_1_6_SS.sis",(0x2000F866)
This will make the final installation file approximately 2.8MB which is not the best solution but this is left to
the judgement of the developer whether on not he takes this step.
== The same project in Qt ==
In case you are interested in using this project with Qt on Symbian, take a look at QQrDecoder folder.