@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 +6 -3
- package/android/build.gradle +1 -1
- package/ios/GSSDK/GSSDK.xcframework/Info.plist +5 -5
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/GSSDK +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Headers/GSKReadabilityLevel.h +5 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/Info.plist +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/he.lproj/GSSDK.strings +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/tr.lproj/GSSDK.strings +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64/GSSDK.framework/vi.lproj/GSSDK.strings +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/GSSDK +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Headers/GSKReadabilityLevel.h +5 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/Info.plist +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/he.lproj/GSSDK.strings +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/tr.lproj/GSSDK.strings +0 -0
- package/ios/GSSDK/GSSDK.xcframework/ios-arm64_x86_64-simulator/GSSDK.framework/vi.lproj/GSSDK.strings +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
## Description
|
|
5
5
|
|
|
6
|
-
|
|
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
|
-
|
|
17
|
-
|
|
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
|
package/android/build.gradle
CHANGED
|
@@ -10,15 +10,18 @@
|
|
|
10
10
|
<key>DebugSymbolsPath</key>
|
|
11
11
|
<string>dSYMs</string>
|
|
12
12
|
<key>LibraryIdentifier</key>
|
|
13
|
-
<string>ios-
|
|
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-
|
|
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>
|
|
Binary file
|
|
@@ -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
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thegrizzlylabs/react-native-genius-scan",
|
|
3
|
-
"version": "5.9.
|
|
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",
|