barKoder Installation Guide for Android Barcode Reader SDK

To utilize our SDK on Android, follow these simple steps to integrate it into your Android project:

Below is a comprehensive guide to assist you in integrating our SDK into your Android project:

Step 1: Import Module #

Start by importing the 'barkoder' module as displayed in the instructions.

Please note, the source directory path should refer to the 'barcoder' folder that contains both 'barkoder.aar' and 'build.gradle', not directly to the 'barkoder.aar' file.

Image 1 - Import module

Keep in mind that path in source directory should reference to the barcoder folder that contains both barkoder.aar and build.gradle, not directly to the barkoder.aar file

Step 2: Add Dependency #

In your app's build gradle file, add the following dependency:

                implementation project(path: ':barkoder')
            
image

Step 3: Add Activity/Fragment #

In the layout.xml of the activity/fragment where you want the scanner to be visible, add the following code:

                <com.barkoder.BarkoderView
        android:id="@+id/bkdView"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
            
image

Step 4: Create Barkoder Config #

Create a 'barkoder' configuration as per your requirements or choose from our templates.

                bkdView.config = BarkoderConfig(this, "LICENSE_KEY") {
   Log.i("LicenseInfo", it.message)
}
BarkoderHelper.applyConfigSettingsFromTemplate(
   this,
   bkdView.config,
   BarkoderConfigTemplate.INDUSTRIAL_1D,
   null
)
            

Step 5: Add BarkoderResultCallback #

Implement the 'BarkoderResultCallback' interface to receive scanned results.

                class MainActivity : AppCompatActivity(), BarkoderResultCallback {
   ....

   override fun scanningFinished(results: Array<Barkoder.Result>, thumbnails: Array<Bitmap>, imageResult: Bitmap?) {
       Log.i("Scanned result", results[0].textualData)
   }
}
            

Step 6: Start Scanning #

Finally, initiate the scanning process with the following command:

                bkdView.startScanning(this)
            

Step 7: Enabling Symbologies #

The following method can be used in order to enable individual symbologies from setActiveBarcodeTypes.

There is option to set multiple active barcodes at once as array )

                private fun setActiveBarcodeTypes() {
    // There is option to set multiple active barcodes at once as array
    bkdView.config.decoderConfig.SetEnabledDecoders(
        arrayOf(
            Barkoder.DecoderType.QR,
            Barkoder.DecoderType.Ean13
            Barkoder.DecoderType.IDDocument // enable mrz
        )
    )
    // or configure them one by one
    bkdView.config.decoderConfig.UpcA.enabled = true
}
            

This comprehensive guide should enable a smooth integration of our SDK into your Android project. For any further assistance, feel free to reach out by utilizing the Ticketing System of the barKoder Developer Portal.

Page Contents

History:

close

Version #798

Published: 11/28/2024 20:57:38

Created On: 11/28/2024 20:57:38

Modified By: Vangel Ivanov

Published Version

Version #684

Was Published: 10/03/2024 10:53:10

Created On: 10/03/2024 10:53:10

Modified By: Lazar Ilievski

Version #145

Was Published: 08/02/2024 18:23:28

Created On: 08/02/2024 18:23:15

Modified By: Lazar Ilievski

Version #144

Was Published: 08/02/2024 18:21:14

Created On: 08/02/2024 18:20:59

Modified By: Lazar Ilievski

Version #90

Was Published: 06/16/2024 14:59:39

Created On: 06/16/2024 14:59:34

Modified By: Mitko Nikolov

Version #89

Was Published: 06/16/2024 14:54:13

Created On: 06/16/2024 14:54:09

Modified By: Vladimir Lazarevski

Version #88

Was Published: 01/01/1970 00:00:00

Created On: 06/16/2024 14:53:59

Modified By: Vladimir Lazarevski

Version #87

Was Published: 01/01/1970 00:00:00

Created On: 06/16/2024 13:12:03

Modified By: Vladimir Lazarevski

Version #86

Was Published: 06/16/2024 13:06:03

Created On: 06/16/2024 13:05:58

Modified By: Vladimir Lazarevski

Version #85

Was Published: 06/16/2024 13:04:28

Created On: 06/16/2024 13:04:22

Modified By: Vladimir Lazarevski

Version #62

Was Published: 06/12/2024 13:28:59

Created On: 06/12/2024 13:28:14

Modified By: Trajce Poprizov

Version #51

Was Published: 06/12/2024 08:43:04

Created On: 06/12/2024 08:41:52

Modified By: Trajce Poprizov

Version #50

Was Published: 06/12/2024 08:42:01

Created On: 06/12/2024 07:30:20

Modified By: Trajce Poprizov

Version #14

Was Published: 06/12/2024 08:06:07

Created On: 05/30/2024 07:04:18

Modified By: Trajce Poprizov