Skip to content

erickogi/KogiIdScannerLibrary

Repository files navigation

KogiIdScannerLibrary

Shows how to use the scanner library in an android project

To use the library the following in the build.gradle(project)

repositories {
        google()
        jcenter()
        maven { url 'https://jitpack.io' }
    }
    

Then add the dependancy

   
       implementation 'com.github.erickogi:Idscanner:v1.0.0'

In the activity you plan to use the idscanner, start the scannining activity

     startActivityForResult(new Intent(MainActivity.this, CaptureActivity.class), 1001);
     

Implement onActivityResult to get the kipande object.

       @Override
    protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if(requestCode==1001){
            if(resultCode== Activity.RESULT_OK){


                results.setText("MY D____"+new Gson().toJson(data));

                Kipande kipande=((Kipande)data.getParcelableExtra("Data") );
                results.setText("MY D____"+new Gson().toJson(data));


            }


        }
    }
    
    
   
    

Make sure to add camera perissions to your manifest

 <uses-permission android:name="android.permission.CAMERA" />
    <uses-feature android:name="android.hardware.camera" />

CODE WILL BE MIGRATED TO KOTLIN SOON

About

Shows how to use the scanner library in an android project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages