Skip to content

Commit 7fd503c

Browse files
Merge branch 'QuickCapture-V3' of https://github.com/ExtrieveTechnologies/QuickCapture_Android into QuickCapture-V3
2 parents c9d52a4 + 64f44e3 commit 7fd503c

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

README.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ repositories {
2828
2929
//Then add implementation for SDK in dependencies in build.gradle (module:<yourmodulename>)
3030
dependencies {
31-
implementation 'com.extrieve.quickcapture:QCv3:3.0.5'
31+
implementation 'com.extrieve.quickcapture:QCv3:3.0.6'
3232
}
3333
```
3434

@@ -38,7 +38,7 @@ Or Maven:
3838
<dependency>
3939
<groupId>com.extrieve.quickcapture</groupId>
4040
<artifactId>QCv3</artifactId>
41-
<version>3.0.5</version>
41+
<version>3.0.6</version>
4242
</dependency>
4343
```
4444

@@ -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 method on object(imageHelper) of ImgHelper class.
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 method on object(imageHelper) of ImgHelper class.
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)