Skip to content

Commit d264fb5

Browse files
Update README.md
1 parent 642d4a8 commit d264fb5

1 file changed

Lines changed: 21 additions & 12 deletions

File tree

README.md

Lines changed: 21 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,35 @@
11
<img class="img-fluid" align="center" src="https://github.com/ExtrieveTechnologies/QuickCapture/blob/main/QuickCapture.png?raw=true" width="30%" alt="img-verification"><a align="center" href='https://play.google.com/store/apps/details?id=com.extrieve.exScan&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1' title="Click to download android app" target="_blank" rel="noopener noreferrer"><img align="center" width="150px" alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png'/></a><img align="right" class="img-fluid" padding="10px" src="https://github.com/ExtrieveTechnologies/QuickCapture/blob/main/android.png?raw=true?raw=true" alt="img-verification">
22

33

4-
## Document Scanning-Capture SDK ANDROID v3
4+
## Document Scanning-Capture SDK ANDROID v4.0
55
QuickCapture Mobile Scanning SDK Specially designed for native ANDROID from [Extrieve](https://www.extrieve.com/).
66

77
> It's not "**just**" a scanning SDK. It's a "**document**" scanning/capture SDK evolved with **Best Quality**, **Highest Possible Compression**, **Image Optimisation**, of output document in mind.
88
9-
>Control **DPI**,**Layout** & **Size** of output images, PDF & TIFF
9+
> Control **DPI**,**Layout** & **Size** of output images, PDF & TIFF
10+
11+
> **QR code** & **BAR Code** Scanning & Generation
1012
1113
> **Developer-friendly** & **Easy to integration** SDK.
1214
1315
*Choose the **right** version that suits your need* :
14-
- [**QuickCapture v2**](https://github.com/ExtrieveTechnologies/QuickCapture_Android/tree/QuickCapture-V2#document-scanning-capture-sdk-android-v2): Optimized capture functionality, designed to be as compact as possible [~ **2 MB**].
16+
- [**QuickCapture v4**](https://github.com/ExtrieveTechnologies/QuickCapture_Android/tree/QuickCapture-V3#document-scanning-capture-sdk-android-v3): Comprehensive & advanced **AI** functionalities,**QR Code & BAR Code** Scanning & Generation.
1517
- [**QuickCapture v3**](https://github.com/ExtrieveTechnologies/QuickCapture_Android/tree/QuickCapture-V3#document-scanning-capture-sdk-android-v3): Comprehensive & advanced **AI** functionalities, **comparatively bit** larger size [~ **20 MB**].
18+
- [**QuickCapture v2**](https://github.com/ExtrieveTechnologies/QuickCapture_Android/tree/QuickCapture-V2#document-scanning-capture-sdk-android-v2): Optimized capture functionality, designed to be as compact as possible [~ **2 MB**].
1619

17-
> **End of support Notice** : QuickCapture SDK Android **V1** deprecated by Dec. 2022.For any further updates and support, can use **V2**
20+
> **End of support Notice** :
21+
> QuickCapture SDK Android **V1** deprecated by Dec. 2022.For any further updates and support, can use **V2**
1822
> which having no major modifications.But with improved funcionalities,feature additions and fixes.
23+
>
24+
> QuickCapture SDK Android **V2** deprecated by May. 2024.For any further updates and support, can use **V4** & bugfixes on **V3**
1925
2026
[Refer here for **V2 documentation** and samples](https://github.com/ExtrieveTechnologies/QuickCapture_Android/tree/QuickCapture-V2#mobile-document-scanning-sdk-android-v2)
27+
[Refer here for **V3 documentation** and samples](https://github.com/ExtrieveTechnologies/QuickCapture_Android/tree/QuickCapture-V2#mobile-document-scanning-sdk-android-v2)
2128

2229
### Other available platform options
2330
- [iOS](https://github.com/ExtrieveTechnologies/QuickCapture_IOS)
2431
- [Fultter Plugin](https://pub.dev/packages/quickcapture)
32+
- [React-Native Plugin](https://pub.dev/packages/quickcapture)
2533
- [Web SDK](https://github.com/ExtrieveTechnologies/QuickCapture_WEB)
2634

2735

@@ -39,7 +47,7 @@ repositories {
3947
4048
//Then add implementation for SDK in dependencies in build.gradle (module:<yourmodulename>)
4149
dependencies {
42-
implementation 'com.extrieve.quickcapture:QCv3:3.1.23'
50+
implementation 'com.extrieve.quickcapture:QCv4:4.0.9'
4351
}
4452
```
4553

@@ -48,8 +56,8 @@ Or Maven:
4856
```xml
4957
<dependency>
5058
<groupId>com.extrieve.quickcapture</groupId>
51-
<artifactId>QCv3</artifactId>
52-
<version>3.1.23</version>
59+
<artifactId>QCv4</artifactId>
60+
<version>4.0.9</version>
5361
</dependency>
5462
```
5563

@@ -58,7 +66,7 @@ Or even you can download the **.aar** library file from GitHub's [releases page]
5866

5967
Compatibility
6068
-------------
61-
* **JAVA 8 Support**: QuickCapture v3 requires JAVA version 8 support for the application.
69+
* **JAVA 11 Support**: QuickCapture v3 requires JAVA version 11 support for the application.
6270
* **Minimum Android SDK**: QuickCapture v3 requires a minimum API level of 21.
6371
* **Compiled SDK Version**: QuickCapture v3 compiled against **API 34**.
6472

@@ -67,10 +75,11 @@ Compatibility
6775

6876
SDK have two core classes and supporting classes :
6977

70-
1. **CameraHelper** - *Handle the camera related operations. Basically, an activity.*
71-
2. **ImgHelper** - *Purpose of this class is to handle all imaging related operations.*
72-
3. **Config** - *Holds various configurations SDK.*
73-
4. **ImgException** - *Handle all exceptions on image related operations on ImgHelper.*
78+
1. **CameraHelper** - *Handle the camera related operations. Basically, an activity.*
79+
2. **ImgHelper** - *Purpose of this class is to handle all imaging related operations.*
80+
3. **OpticalCodeHelper** - *Handle the camera related operations. Basically, an activity.*
81+
4. **Config** - *Holds various configurations SDK.*
82+
5. **ImgException** - *Handle all exceptions on image related operations on ImgHelper.*
7483

7584

7685
Based on the requirement, any one or all classes can be used.And need to import those from the SDK.

0 commit comments

Comments
 (0)