Fast Codescan allows you to easily scan QR Codes and Barcodes. The scanned Code can be automatically used to be copied to the clipboard or to open a website. It also can be used to call an url in background. This allows you to utilize this app as an extension to your own webservice for reading and evaluation QR Codes or Barcodes. For example you can setup your Webserver for listing to URL: http://myscanurl.com/1234 and print this as an QR Code. Then start the Fast Codescan and set it to "Call Url" every time the QR Code is scanned. If the mobile is connected to the internet the mentioned Url will be called in background and you can count how often that QR Code was scanned. If you think further you can use this functionaltiy for more than just counting.
New Feature for Developers: App can be controlled from another App:
Call:
Intent intent = new Intent("de.appdesigners.android.gms.appbridge.vision.barcodereader.BarcodeCaptureActivity");
intent.putExtra("strIsCallback", "1");
startActivityForResult(intent, 777);
Response:
private String m_strQRCode = "";
public void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == 777 && resultCode == RESULT_OK) {
m_strQRCode = intent.getStringExtra("strResultCode");
}
}
Latest Version
2.1Requires Android
2.3
Category
Productivity AppContent Rating
Everyone
Report
Flag as inappropriateLast updated on Feb 12, 2019
Minor bug fixes and improvements. Install or update to the newest version to check it out!