qrdnicapacitor 1.0.4 → 1.0.6
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/android/build.gradle
CHANGED
|
@@ -42,14 +42,18 @@ android {
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
|
|
45
46
|
repositories {
|
|
46
47
|
google()
|
|
47
48
|
mavenCentral()
|
|
49
|
+
flatDir {
|
|
50
|
+
dirs 'libs' // Esto le dice a Gradle que busque librerías en la carpeta libs
|
|
51
|
+
}
|
|
48
52
|
}
|
|
49
53
|
|
|
50
|
-
|
|
51
54
|
dependencies {
|
|
52
55
|
implementation files('libs/qrdnidroid-release.aar')
|
|
56
|
+
//implementation(name: 'qrdnidroid-release', ext: 'aar')
|
|
53
57
|
implementation files('libs/jpeg2000.jar')
|
|
54
58
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
|
|
55
59
|
implementation ('me.dm7.barcodescanner:zxing:1.9.8') {
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qrdnicapacitor",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Lectura y validación de códigos QR generados por la app MiDNI",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -13,7 +13,9 @@
|
|
|
13
13
|
"ios/Sources",
|
|
14
14
|
"ios/Tests",
|
|
15
15
|
"Package.swift",
|
|
16
|
-
"Qrdnicapacitor.podspec"
|
|
16
|
+
"Qrdnicapacitor.podspec",
|
|
17
|
+
"android/libs/qrdnidroid-release.aar",
|
|
18
|
+
"android/libs/jpeg2000.jar"
|
|
17
19
|
],
|
|
18
20
|
"author": "Diego Cid Merino",
|
|
19
21
|
"license": "Commercial",
|