@dariyd/react-native-document-scanner 2.0.16 → 2.0.17

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.
@@ -124,7 +124,8 @@ afterEvaluate { project ->
124
124
  def javaCompileTask = variant.javaCompileProvider.get()
125
125
 
126
126
  task "jar${name}"(type: Jar, dependsOn: javaCompileTask) {
127
- from javaCompileTask.destinationDir
127
+ def classesOut = javaCompileTask.hasProperty('destinationDirectory') ? javaCompileTask.destinationDirectory : javaCompileTask.destinationDir
128
+ from classesOut
128
129
  }
129
130
  }
130
131
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@dariyd/react-native-document-scanner",
3
3
  "title": "React Native Document Scanner",
4
- "version": "2.0.16",
4
+ "version": "2.0.17",
5
5
  "description": "React Native document scanner using VisionKit (iOS) and ML Kit (Android) with support for both old and new architecture",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",