rn-document-scanner-vision 1.0.6 → 1.0.8

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.
@@ -68,8 +68,10 @@ android {
68
68
  }
69
69
 
70
70
  compileOptions {
71
- sourceCompatibility JavaVersion.VERSION_11
72
- targetCompatibility JavaVersion.VERSION_11
71
+ // Use Java version from host project, fallback to 11 for compatibility
72
+ def javaVersion = safeExtGet('javaVersion', JavaVersion.VERSION_11)
73
+ sourceCompatibility javaVersion
74
+ targetCompatibility javaVersion
73
75
  }
74
76
 
75
77
  lint {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rn-document-scanner-vision",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "description": "A React Native library for scanning documents on iOS and Android",
5
5
  "main": "lib/commonjs/index.js",
6
6
  "module": "lib/module/index.js",