@captureid/capacitor-cidprint 5.0.3 → 5.0.5
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/.gradle/8.0.2/checksums/checksums.lock +0 -0
- package/android/.gradle/8.0.2/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.0.2/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.0.2/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +2 -2
- package/android/app/captureid/cidprinterlibrary/1.0.5/cidprinterlibrary-1.0.5.aar +0 -0
- package/android/build.gradle +15 -2
- package/package.json +1 -1
- package/android/.gradle/5.6.4/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/5.6.4/fileHashes/fileHashes.lock +0 -0
- /package/android/.gradle/{5.6.4 → 8.0.2/dependencies-accessors}/gc.properties +0 -0
- /package/android/.gradle/{5.6.4 → 8.0.2}/fileChanges/last-build.bin +0 -0
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
#
|
|
2
|
-
gradle.version=
|
|
1
|
+
#Sun Nov 26 15:43:37 CET 2023
|
|
2
|
+
gradle.version=8.0.2
|
|
Binary file
|
package/android/build.gradle
CHANGED
|
@@ -64,14 +64,27 @@ dependencies {
|
|
|
64
64
|
implementation 'app.captureid:supportv1:1.0.1'
|
|
65
65
|
}
|
|
66
66
|
|
|
67
|
+
def findNodesFolder(String searchpath, String pattern) {
|
|
68
|
+
def result = []
|
|
69
|
+
def f = file(searchpath)
|
|
70
|
+
f.&eachDir { File path -> if ( path.name ==~ pattern ) {
|
|
71
|
+
result << path
|
|
72
|
+
}}
|
|
73
|
+
if(result == []) result = findNodeFolder(searchpath + "/..", pattern)
|
|
74
|
+
return result as String[]
|
|
75
|
+
}
|
|
76
|
+
|
|
67
77
|
tasks.configure {
|
|
68
78
|
doFirst {
|
|
69
79
|
project
|
|
70
80
|
.parent
|
|
71
81
|
.allprojects ({
|
|
72
82
|
getRepositories()
|
|
73
|
-
.mavenLocal({mavenRepository ->
|
|
74
|
-
|
|
83
|
+
.mavenLocal({mavenRepository -> {
|
|
84
|
+
def nodesDir = findNodesFolder("$rootDir", 'node_modules').getAt(0)
|
|
85
|
+
mavenRepository.setUrl("$nodesDir/@captureid/capacitor-cidprint/android")
|
|
86
|
+
// mavenRepository.setUrl("$rootDir/../node_modules/@captureid/capacitor-cidprint/android")
|
|
87
|
+
}
|
|
75
88
|
})
|
|
76
89
|
})
|
|
77
90
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
File without changes
|