Skip to content

Commit e2ae0d0

Browse files
Update README.md
1 parent cf263c8 commit e2ae0d0

File tree

1 file changed

+19
-1
lines changed

1 file changed

+19
-1
lines changed

README.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff 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
507510
Boolean 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/)

0 commit comments

Comments
 (0)