Easy Barcode Scanner APK

55+ votes, 3.89/5

This is a very simple barcode scanner. There are no settings you need to handle.... [readmore]


⇣ Download APK (5.01 MB)

This is an original APK file direct fetch from google play. It is safe to download and free of any virus.

Version 2.0.9
Update
Size 5.01 MB
Category Tools
Developer Magic Len
Downloads ↓ 11.1K
⇣ Download APK (5.01 MB)

This is an original APK file direct fetch from google play. It is safe to download and free of any virus.

File Infos

License type Free
Version 2.0.9
Size 5.01 MB (5250123)
Filename org.magiclen.barcodescanner_209_5250123.apk
Requirement 5.0 and up
Type app
Category Tools
Package name: org.magiclen.barcodescanner
Slogan: This is a very simple barcode scanner. There are no settings you need to handle.

APK Permissions


‣ android.permission.CAMERA
‣ android.permission.WAKE_LOCK
‣ android.permission.INTERNET
‣ android.permission.ACCESS_NETWORK_STATE
‣ android.permission.WRITE_EXTERNAL_STORAGE
‣ android.permission.READ_PROFILE
‣ android.permission.READ_CONTACTS


APK used Features


‣ android.hardware.camera
‣ android.hardware.camera.autofocus
‣ android.hardware.touchscreen

Screenshots (21 images)

Easy Barcode Scanner screenshot 1 Easy Barcode Scanner screenshot 2 Easy Barcode Scanner screenshot 3 Easy Barcode Scanner screenshot 4 Easy Barcode Scanner screenshot 5 Easy Barcode Scanner screenshot 6 Easy Barcode Scanner screenshot 7 Easy Barcode Scanner screenshot 8 Easy Barcode Scanner screenshot 9 Easy Barcode Scanner screenshot 10 Easy Barcode Scanner screenshot 11 Easy Barcode Scanner screenshot 12 Easy Barcode Scanner screenshot 13 Easy Barcode Scanner screenshot 14 Easy Barcode Scanner screenshot 15 Easy Barcode Scanner screenshot 16 Easy Barcode Scanner screenshot 17 Easy Barcode Scanner screenshot 18 Easy Barcode Scanner screenshot 19 Easy Barcode Scanner screenshot 20 Easy Barcode Scanner screenshot 21

About Easy Barcode Scanner APK

Easy Barcode Scanner poster
Easy Barcode Scanner APK version 2.0.9 poster

Latest update [menu]


Version 2.0.9 updated.

Description [menu]


"Easy Barcode Scanner" is a simple barcode scanner based on zBar Reader. The zBar Reader is implemented by C code so that it has high performance. With zBar, Easy Barcode Scanner can support QR Code, EAN-8, EAN-13, UPC-E, UPC-A, ISBN-10, ISBN-13, Interleaved 2 of 5, DataBar, DataBar Expanded, Codabar, Code 39, Code 93、Code 128 and PDF417. Data Matrix is supporting now, too.

"Easy Barcode Scanner" allows you to use any angle of camera and device to scan barcode, and you don't have to put barcode at the center of your camera. Becides, you can touch the camera preview to focus to a object, zoom in or zoom out. If you want to change your camera, only ONE click you need to do.

For Android Developer, you can use this Android SDK code below to scan barcode for your app:

final Intent intent = new Intent("org.magiclen.barcodescanner.SCAN");
final List list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
if (list.size() > 0) {
intent.putExtra("SCAN_MODE", "QR_CODE_MODE"); // Can also use PRODUCT_MODE, SCAN_MODE, QR_CODE_MODE
startActivityForResult(intent, 0);
} else {
// You may ask your user to install Easy Barcode Scanner
}

To get the scanning result, you must override onActivityResult method:

public void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
if (requestCode == 0) {
if (resultCode == Activity.RESULT_OK) {
final String result = data.getStringExtra("SCAN_RESULT"); // Get scanning result
final String type = data.getStringExtra("code_type"); // Get code type
} else {
// Not scan any code yet
}
}
}

Moreover, if you want to generate a QR code you can use this Android SDK code below:

final Intent intent = new Intent("org.magiclen.barcodescanner.ENCODE");
final List list = getPackageManager().queryIntentActivities(intent, PackageManager.MATCH_DEFAULT_ONLY);
if (list.size() > 0) {
intent.putExtra("ENCODE_DATA", "Put some string you want to encode");
startActivity(intent);
} else {
// You may ask your user to install Easy Barcode Scanner
}

If you have further interest in this app, you can check out our website at: https://magiclen.org/

How to install Easy Barcode Scanner APK for Android [menu]


Download Easy Barcode Scanner APK file (org.magiclen.barcodescanner_209_5250123.apk) from SameAPK.com, then follow these steps:

Update Phone Settings

  • Go to your phone Settings page
  • Tap Security or Applications (varies with device)
  • Check the Unknown Sources box
  • Confirm with OK

Go to Downloads

  • Open Downloads on your device by going to My Files or Files
  • Tap the APK file you downloaded (org.magiclen.barcodescanner_209_5250123.apk)
  • Tap Install when prompted, the APK file you downloaded will be installed on your device.

How to install Easy Barcode Scanner APK on Windows 7/8/10 or MAC PC? [menu]


Download Easy Barcode Scanner APK file(org.magiclen.barcodescanner_209_5250123.apk) from SameAPK.com to your PC (ex: /Users/xxx/Downloads/(org.magiclen.barcodescanner_209_5250123.apk)), then follow these steps:

Using Emulator:

  • Download And Install one Emulator Softwares (Ex: Bluestacks, GenyMotion, NoxPlayer)
  • Simple install APK on PC by drag and drop file org.magiclen.barcodescanner_209_5250123.apk on Emulator screen

Easy Barcode Scanner APK Pros & Cons [menu]


Pros
  • This app is safe, it's not require high risk permissions
  • Compatible with 64-bit device (some android device and current Bluestacks)

Cons
  • No best performance On PC (Windows, MAC) (because it's not exists X86 variant)



Similar applications [menu]


New Apps



Comments

No comment Yet.