File tree Expand file tree Collapse file tree 1 file changed +19
-1
lines changed
Expand file tree Collapse file tree 1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -502,8 +502,11 @@ As a part of exceptional error handling **ImgException** class is available.
502502> [ Click for license details ] ( https://www.extrieve.com/mobile-document-scanning/ )
503503
504504``` java
505+ // JAVA
505506
506- String licData = readAssetFile(" com.extrieve.lic" , this );
507+ // Read lic asset file locally or provide a file url
508+ // eg : String licData = readAssetFile("com.extrieve.lic", this);
509+ // Pass liscence data to UnlockImagingLibrary
507510Boolean IsUnlocked = ImageHelper . UnlockImagingLibrary(licData)
508511
509512/*
@@ -513,5 +516,20 @@ boolean UnlockImagingLibrary(String licenseFileData)
513516
514517```
515518
519+ ``` kotlin
520+ // KOTLIN
521+
522+ // Read lic asset file locally or provide a file url
523+ // eg : String licData = readAssetFile("com.extrieve.lic", this);
524+ // Pass liscence data to UnlockImagingLibrary
525+ val isUnlocked: Boolean = ImageHelper .UnlockImagingLibrary (licData)
526+
527+ /*
528+ boolean UnlockImagingLibrary(String licenseFileData)
529+ throws Exception
530+ */
531+
532+ ```
533+
516534
517535[ © 1996 - 2023 Extrieve Technologies] ( https://www.extrieve.com/ )
You can’t perform that action at this time.
0 commit comments