Using android intent on adobe air

It has been some time since I was here.

I'm currently trying to develop an application in Adobe AIR with a 1D barcode reader using the device’s camera function. I tried using the ZXing library and followed the example http://www.remotesynthesis.com/post.cfm/adding-a-qr-code-reader-in-flex-on-android . However, the QR reads, but I was not able to get the 1 D barcode reader to work. Even with the MultiFormatReader class.

However, I tried ZXing BarcodeScanner from the Android Market and it works fine on my device. So, I was thinking about using ZXing android Intent to handle reading and passing the result back to my AIR application. But I do not know how to start an Android project from AIR.

Any suggestions are welcome, thanks.

+3
source share
1 answer

If you are developing Air on Android, you can use the extension to do the job for you! checkout http://myappsnippet.com/qr-code-scanner-native-extension-adobe-air is an AS3 library that uses the Zxing Java library and scans QR codes and returns the result back to your AS3 project.

+1
source

All Articles