@thegrizzlylabs/react-native-genius-scan 5.9.0 → 5.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -3,7 +3,9 @@
3
3
 
4
4
  ## Description
5
5
 
6
- This React Native component allows you to access the [Genius Scan SDK](https://geniusscansdk.com) core features from a React Native application. The component relies on the ScanFlow module which provides a all-in-one scanner module with simple configurable input.
6
+ The Genius Scan SDK for React Native enables you to integrate the document scanning experience that powers the [Genius Scan app](tglapp.com/scan) in your React Native app.
7
+
8
+ It offers a component enabling you to implement the [Genius Scan SDK](https://geniusscansdk.com) Scan Flow, an all-in-one configurable scanner module with the following key features:
7
9
 
8
10
  - Automatic document detection
9
11
  - Document perspective correction
@@ -13,8 +15,9 @@ This React Native component allows you to access the [Genius Scan SDK](https://g
13
15
 
14
16
  ## License
15
17
 
16
- This plugin is based on the Genius Scan SDK for which you need to [setup a license](#set-the-license-key).
17
- You can aleady try the "demo" version for free by not setting a license key, the only limitation being that the app will exit after 60 seconds.
18
+ You can try the "demo" version for free without a license key, the only limitation being that the app will stop working after 60 seconds.
19
+
20
+ You need to [set a license key](#set-the-license-key) for unlimited demo time, or for production.
18
21
 
19
22
  To buy a license:
20
23
  1. [Sign up](https://sdk.geniusscan.com/apps) to our developer console
@@ -41,5 +41,5 @@ rootProject.allprojects {
41
41
 
42
42
  dependencies {
43
43
  implementation 'com.facebook.react:react-native:+'
44
- implementation 'com.geniusscansdk:gssdk:5.9.0'
44
+ implementation 'com.geniusscansdk:gssdk:5.9.1'
45
45
  }
@@ -10,15 +10,18 @@
10
10
  <key>DebugSymbolsPath</key>
11
11
  <string>dSYMs</string>
12
12
  <key>LibraryIdentifier</key>
13
- <string>ios-arm64</string>
13
+ <string>ios-arm64_x86_64-simulator</string>
14
14
  <key>LibraryPath</key>
15
15
  <string>GSSDK.framework</string>
16
16
  <key>SupportedArchitectures</key>
17
17
  <array>
18
18
  <string>arm64</string>
19
+ <string>x86_64</string>
19
20
  </array>
20
21
  <key>SupportedPlatform</key>
21
22
  <string>ios</string>
23
+ <key>SupportedPlatformVariant</key>
24
+ <string>simulator</string>
22
25
  </dict>
23
26
  <dict>
24
27
  <key>BinaryPath</key>
@@ -26,18 +29,15 @@
26
29
  <key>DebugSymbolsPath</key>
27
30
  <string>dSYMs</string>
28
31
  <key>LibraryIdentifier</key>
29
- <string>ios-arm64_x86_64-simulator</string>
32
+ <string>ios-arm64</string>
30
33
  <key>LibraryPath</key>
31
34
  <string>GSSDK.framework</string>
32
35
  <key>SupportedArchitectures</key>
33
36
  <array>
34
37
  <string>arm64</string>
35
- <string>x86_64</string>
36
38
  </array>
37
39
  <key>SupportedPlatform</key>
38
40
  <string>ios</string>
39
- <key>SupportedPlatformVariant</key>
40
- <string>simulator</string>
41
41
  </dict>
42
42
  </array>
43
43
  <key>CFBundlePackageType</key>
@@ -13,10 +13,15 @@
13
13
  /// Enum describing various readability levels, that correspond to legibility scores when processing
14
14
  /// a scanned document.
15
15
  typedef NS_CLOSED_ENUM(NSUInteger, GSKReadabilityLevel) {
16
+ /// Scan with almost no chance of being readable
16
17
  GSKReadabilityLevelLowest,
18
+ /// Scan with very little chance of being readable, even though it's not impossible
17
19
  GSKReadabilityLevelLow,
20
+ /// Scan with little chance of being entirely readable, even though it's possible
18
21
  GSKReadabilityLevelMedium,
22
+ /// Scan with high chance of being readable, even though it's not guaranteed
19
23
  GSKReadabilityLevelHigh,
24
+ /// Scan with very high chance of being readable
20
25
  GSKReadabilityLevelHighest,
21
26
  };
22
27
 
@@ -13,10 +13,15 @@
13
13
  /// Enum describing various readability levels, that correspond to legibility scores when processing
14
14
  /// a scanned document.
15
15
  typedef NS_CLOSED_ENUM(NSUInteger, GSKReadabilityLevel) {
16
+ /// Scan with almost no chance of being readable
16
17
  GSKReadabilityLevelLowest,
18
+ /// Scan with very little chance of being readable, even though it's not impossible
17
19
  GSKReadabilityLevelLow,
20
+ /// Scan with little chance of being entirely readable, even though it's possible
18
21
  GSKReadabilityLevelMedium,
22
+ /// Scan with high chance of being readable, even though it's not guaranteed
19
23
  GSKReadabilityLevelHigh,
24
+ /// Scan with very high chance of being readable
20
25
  GSKReadabilityLevelHighest,
21
26
  };
22
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thegrizzlylabs/react-native-genius-scan",
3
- "version": "5.9.0",
3
+ "version": "5.9.1",
4
4
  "description": "React Native Plugin for Genius Scan SDK",
5
5
  "author": "TheGrizzlyLabs <sdk@thegrizzlylabs.com> (https://www.thegrizzlylabs.com/)",
6
6
  "homepage": "https://geniusscansdk.com",