bureau-sdk 0.0.1-alpha01
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 +107 -0
- package/android/build.gradle +120 -0
- package/android/gradle.properties +5 -0
- package/android/libs/id/bureau/analytics/1.0.0/analytics-1.0.0.aar +0 -0
- package/android/libs/id/bureau/analytics/1.0.0/analytics-1.0.0.module +137 -0
- package/android/libs/id/bureau/analytics/1.0.0/analytics-1.0.0.pom +64 -0
- package/android/libs/id/bureau/analytics/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/backend-config/1.0.0/backend-config-1.0.0.aar +0 -0
- package/android/libs/id/bureau/backend-config/1.0.0/backend-config-1.0.0.module +179 -0
- package/android/libs/id/bureau/backend-config/1.0.0/backend-config-1.0.0.pom +100 -0
- package/android/libs/id/bureau/backend-config/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/base/1.0.0/base-1.0.0.aar +0 -0
- package/android/libs/id/bureau/base/1.0.0/base-1.0.0.module +102 -0
- package/android/libs/id/bureau/base/1.0.0/base-1.0.0.pom +46 -0
- package/android/libs/id/bureau/base/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/behavioural-biometrics/1.0.0/behavioural-biometrics-1.0.0.aar +0 -0
- package/android/libs/id/bureau/behavioural-biometrics/1.0.0/behavioural-biometrics-1.0.0.module +193 -0
- package/android/libs/id/bureau/behavioural-biometrics/1.0.0/behavioural-biometrics-1.0.0.pom +106 -0
- package/android/libs/id/bureau/behavioural-biometrics/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/bureausdk/1.0.0/bureausdk-1.0.0.aar +0 -0
- package/android/libs/id/bureau/bureausdk/1.0.0/bureausdk-1.0.0.module +144 -0
- package/android/libs/id/bureau/bureausdk/1.0.0/bureausdk-1.0.0.pom +58 -0
- package/android/libs/id/bureau/bureausdk/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/checkRoot/1.0.0/checkRoot-1.0.0.aar +0 -0
- package/android/libs/id/bureau/checkRoot/1.0.0/checkRoot-1.0.0.module +88 -0
- package/android/libs/id/bureau/checkRoot/1.0.0/checkRoot-1.0.0.pom +34 -0
- package/android/libs/id/bureau/checkRoot/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/device-intelligence/1.0.0/device-intelligence-1.0.0.aar +0 -0
- package/android/libs/id/bureau/device-intelligence/1.0.0/device-intelligence-1.0.0.module +228 -0
- package/android/libs/id/bureau/device-intelligence/1.0.0/device-intelligence-1.0.0.pom +124 -0
- package/android/libs/id/bureau/device-intelligence/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/network/1.0.0/network-1.0.0.aar +0 -0
- package/android/libs/id/bureau/network/1.0.0/network-1.0.0.module +109 -0
- package/android/libs/id/bureau/network/1.0.0/network-1.0.0.pom +52 -0
- package/android/libs/id/bureau/network/maven-metadata-local.xml +13 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/AndroidManifestNew.xml +2 -0
- package/android/src/main/java/com/samplenativemodule/FraudNativeModule.kt +70 -0
- package/android/src/main/java/com/samplenativemodule/FraudNativeModulePackage.kt +17 -0
- package/bureau-sdk.podspec +43 -0
- package/ios/FraudNativeModule.mm +21 -0
- package/ios/FraudNativeModule.swift +40 -0
- package/ios/SampleNativeModule-Bridging-Header.h +2 -0
- package/ios/SampleNativeModule.mm +14 -0
- package/ios/SampleNativeModule.swift +8 -0
- package/lib/commonjs/index.js +43 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/module/index.js +38 -0
- package/lib/module/index.js.map +1 -0
- package/package.json +129 -0
- package/src/index.tsx +58 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
4
|
+
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
5
|
+
<!-- which should be used instead. Do not delete the following line which -->
|
|
6
|
+
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
7
|
+
<!-- that they should prefer consuming it instead. -->
|
|
8
|
+
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
9
|
+
<modelVersion>4.0.0</modelVersion>
|
|
10
|
+
<groupId>id.bureau</groupId>
|
|
11
|
+
<artifactId>backend-config</artifactId>
|
|
12
|
+
<version>1.0.0</version>
|
|
13
|
+
<packaging>aar</packaging>
|
|
14
|
+
<dependencies>
|
|
15
|
+
<dependency>
|
|
16
|
+
<groupId>id.bureau</groupId>
|
|
17
|
+
<artifactId>network</artifactId>
|
|
18
|
+
<version>1.0.0</version>
|
|
19
|
+
<scope>compile</scope>
|
|
20
|
+
</dependency>
|
|
21
|
+
<dependency>
|
|
22
|
+
<groupId>id.bureau</groupId>
|
|
23
|
+
<artifactId>base</artifactId>
|
|
24
|
+
<version>1.0.0</version>
|
|
25
|
+
<scope>compile</scope>
|
|
26
|
+
</dependency>
|
|
27
|
+
<dependency>
|
|
28
|
+
<groupId>org.jetbrains.kotlin</groupId>
|
|
29
|
+
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
30
|
+
<version>1.6.21</version>
|
|
31
|
+
<scope>compile</scope>
|
|
32
|
+
</dependency>
|
|
33
|
+
<dependency>
|
|
34
|
+
<groupId>io.michaelrocks</groupId>
|
|
35
|
+
<artifactId>paranoid-core</artifactId>
|
|
36
|
+
<version>0.3.7</version>
|
|
37
|
+
<scope>runtime</scope>
|
|
38
|
+
</dependency>
|
|
39
|
+
<dependency>
|
|
40
|
+
<groupId>androidx.core</groupId>
|
|
41
|
+
<artifactId>core-ktx</artifactId>
|
|
42
|
+
<version>1.8.0</version>
|
|
43
|
+
<scope>runtime</scope>
|
|
44
|
+
</dependency>
|
|
45
|
+
<dependency>
|
|
46
|
+
<groupId>org.jetbrains.kotlinx</groupId>
|
|
47
|
+
<artifactId>kotlinx-coroutines-android</artifactId>
|
|
48
|
+
<version>1.6.4</version>
|
|
49
|
+
<scope>runtime</scope>
|
|
50
|
+
</dependency>
|
|
51
|
+
<dependency>
|
|
52
|
+
<groupId>com.google.code.gson</groupId>
|
|
53
|
+
<artifactId>gson</artifactId>
|
|
54
|
+
<version>2.10.1</version>
|
|
55
|
+
<scope>runtime</scope>
|
|
56
|
+
</dependency>
|
|
57
|
+
<dependency>
|
|
58
|
+
<groupId>com.squareup.retrofit2</groupId>
|
|
59
|
+
<artifactId>retrofit</artifactId>
|
|
60
|
+
<version>2.9.0</version>
|
|
61
|
+
<scope>runtime</scope>
|
|
62
|
+
</dependency>
|
|
63
|
+
<dependency>
|
|
64
|
+
<groupId>androidx.datastore</groupId>
|
|
65
|
+
<artifactId>datastore-preferences</artifactId>
|
|
66
|
+
<version>1.0.0</version>
|
|
67
|
+
<scope>runtime</scope>
|
|
68
|
+
</dependency>
|
|
69
|
+
<dependency>
|
|
70
|
+
<groupId>com.google.android.gms</groupId>
|
|
71
|
+
<artifactId>play-services-time</artifactId>
|
|
72
|
+
<version>16.0.1</version>
|
|
73
|
+
<scope>runtime</scope>
|
|
74
|
+
</dependency>
|
|
75
|
+
<dependency>
|
|
76
|
+
<groupId>org.jetbrains.kotlinx</groupId>
|
|
77
|
+
<artifactId>kotlinx-coroutines-play-services</artifactId>
|
|
78
|
+
<version>1.6.4</version>
|
|
79
|
+
<scope>runtime</scope>
|
|
80
|
+
</dependency>
|
|
81
|
+
<dependency>
|
|
82
|
+
<groupId>com.google.dagger</groupId>
|
|
83
|
+
<artifactId>dagger</artifactId>
|
|
84
|
+
<version>2.41</version>
|
|
85
|
+
<scope>runtime</scope>
|
|
86
|
+
</dependency>
|
|
87
|
+
<dependency>
|
|
88
|
+
<groupId>com.google.dagger</groupId>
|
|
89
|
+
<artifactId>dagger-android</artifactId>
|
|
90
|
+
<version>2.41</version>
|
|
91
|
+
<scope>runtime</scope>
|
|
92
|
+
</dependency>
|
|
93
|
+
<dependency>
|
|
94
|
+
<groupId>com.google.dagger</groupId>
|
|
95
|
+
<artifactId>dagger-android-support</artifactId>
|
|
96
|
+
<version>2.41</version>
|
|
97
|
+
<scope>runtime</scope>
|
|
98
|
+
</dependency>
|
|
99
|
+
</dependencies>
|
|
100
|
+
</project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<metadata>
|
|
3
|
+
<groupId>id.bureau</groupId>
|
|
4
|
+
<artifactId>backend-config</artifactId>
|
|
5
|
+
<versioning>
|
|
6
|
+
<latest>1.0.0</latest>
|
|
7
|
+
<release>1.0.0</release>
|
|
8
|
+
<versions>
|
|
9
|
+
<version>1.0.0</version>
|
|
10
|
+
</versions>
|
|
11
|
+
<lastUpdated>20251218105026</lastUpdated>
|
|
12
|
+
</versioning>
|
|
13
|
+
</metadata>
|
|
Binary file
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formatVersion": "1.1",
|
|
3
|
+
"component": {
|
|
4
|
+
"group": "id.bureau",
|
|
5
|
+
"module": "base",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"attributes": {
|
|
8
|
+
"org.gradle.status": "release"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"createdBy": {
|
|
12
|
+
"gradle": {
|
|
13
|
+
"version": "7.4.2"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"variants": [
|
|
17
|
+
{
|
|
18
|
+
"name": "releaseApiElements-published",
|
|
19
|
+
"attributes": {
|
|
20
|
+
"org.gradle.category": "library",
|
|
21
|
+
"org.gradle.usage": "java-api",
|
|
22
|
+
"org.jetbrains.kotlin.platform.type": "androidJvm"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": [
|
|
25
|
+
{
|
|
26
|
+
"group": "org.jetbrains.kotlin",
|
|
27
|
+
"module": "kotlin-stdlib-jdk8",
|
|
28
|
+
"version": {
|
|
29
|
+
"requires": "1.6.21"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"files": [
|
|
34
|
+
{
|
|
35
|
+
"name": "base-1.0.0.aar",
|
|
36
|
+
"url": "base-1.0.0.aar",
|
|
37
|
+
"size": 61374,
|
|
38
|
+
"sha512": "67740049383b9941c9ca060e1b02a6c81ed4e4ed052277b534d4c727f9517ddc07591db61f39ee91ca1654a0a29414783824a0f9619eafd81bb68b7201fe04cc",
|
|
39
|
+
"sha256": "3902666b826c78ab8fcd6d09ac6154dfed35c8f4987e830b94565154ecb29ad7",
|
|
40
|
+
"sha1": "17818ea1b081e2a52e53fd83cd0b2acec4df8510",
|
|
41
|
+
"md5": "513444da8de177b51cd2f8e33185d2eb"
|
|
42
|
+
}
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"name": "releaseRuntimeElements-published",
|
|
47
|
+
"attributes": {
|
|
48
|
+
"org.gradle.category": "library",
|
|
49
|
+
"org.gradle.usage": "java-runtime",
|
|
50
|
+
"org.jetbrains.kotlin.platform.type": "androidJvm"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": [
|
|
53
|
+
{
|
|
54
|
+
"group": "org.jetbrains.kotlin",
|
|
55
|
+
"module": "kotlin-stdlib-jdk8",
|
|
56
|
+
"version": {
|
|
57
|
+
"requires": "1.6.21"
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"group": "io.michaelrocks",
|
|
62
|
+
"module": "paranoid-core",
|
|
63
|
+
"version": {
|
|
64
|
+
"requires": "0.3.7"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"group": "androidx.core",
|
|
69
|
+
"module": "core-ktx",
|
|
70
|
+
"version": {
|
|
71
|
+
"requires": "1.8.0"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"group": "org.jetbrains.kotlinx",
|
|
76
|
+
"module": "kotlinx-coroutines-android",
|
|
77
|
+
"version": {
|
|
78
|
+
"requires": "1.6.4"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"group": "androidx.datastore",
|
|
83
|
+
"module": "datastore-preferences",
|
|
84
|
+
"version": {
|
|
85
|
+
"requires": "1.0.0"
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"files": [
|
|
90
|
+
{
|
|
91
|
+
"name": "base-1.0.0.aar",
|
|
92
|
+
"url": "base-1.0.0.aar",
|
|
93
|
+
"size": 61374,
|
|
94
|
+
"sha512": "67740049383b9941c9ca060e1b02a6c81ed4e4ed052277b534d4c727f9517ddc07591db61f39ee91ca1654a0a29414783824a0f9619eafd81bb68b7201fe04cc",
|
|
95
|
+
"sha256": "3902666b826c78ab8fcd6d09ac6154dfed35c8f4987e830b94565154ecb29ad7",
|
|
96
|
+
"sha1": "17818ea1b081e2a52e53fd83cd0b2acec4df8510",
|
|
97
|
+
"md5": "513444da8de177b51cd2f8e33185d2eb"
|
|
98
|
+
}
|
|
99
|
+
]
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
4
|
+
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
5
|
+
<!-- which should be used instead. Do not delete the following line which -->
|
|
6
|
+
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
7
|
+
<!-- that they should prefer consuming it instead. -->
|
|
8
|
+
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
9
|
+
<modelVersion>4.0.0</modelVersion>
|
|
10
|
+
<groupId>id.bureau</groupId>
|
|
11
|
+
<artifactId>base</artifactId>
|
|
12
|
+
<version>1.0.0</version>
|
|
13
|
+
<packaging>aar</packaging>
|
|
14
|
+
<dependencies>
|
|
15
|
+
<dependency>
|
|
16
|
+
<groupId>org.jetbrains.kotlin</groupId>
|
|
17
|
+
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
18
|
+
<version>1.6.21</version>
|
|
19
|
+
<scope>compile</scope>
|
|
20
|
+
</dependency>
|
|
21
|
+
<dependency>
|
|
22
|
+
<groupId>io.michaelrocks</groupId>
|
|
23
|
+
<artifactId>paranoid-core</artifactId>
|
|
24
|
+
<version>0.3.7</version>
|
|
25
|
+
<scope>runtime</scope>
|
|
26
|
+
</dependency>
|
|
27
|
+
<dependency>
|
|
28
|
+
<groupId>androidx.core</groupId>
|
|
29
|
+
<artifactId>core-ktx</artifactId>
|
|
30
|
+
<version>1.8.0</version>
|
|
31
|
+
<scope>runtime</scope>
|
|
32
|
+
</dependency>
|
|
33
|
+
<dependency>
|
|
34
|
+
<groupId>org.jetbrains.kotlinx</groupId>
|
|
35
|
+
<artifactId>kotlinx-coroutines-android</artifactId>
|
|
36
|
+
<version>1.6.4</version>
|
|
37
|
+
<scope>runtime</scope>
|
|
38
|
+
</dependency>
|
|
39
|
+
<dependency>
|
|
40
|
+
<groupId>androidx.datastore</groupId>
|
|
41
|
+
<artifactId>datastore-preferences</artifactId>
|
|
42
|
+
<version>1.0.0</version>
|
|
43
|
+
<scope>runtime</scope>
|
|
44
|
+
</dependency>
|
|
45
|
+
</dependencies>
|
|
46
|
+
</project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<metadata>
|
|
3
|
+
<groupId>id.bureau</groupId>
|
|
4
|
+
<artifactId>base</artifactId>
|
|
5
|
+
<versioning>
|
|
6
|
+
<latest>1.0.0</latest>
|
|
7
|
+
<release>1.0.0</release>
|
|
8
|
+
<versions>
|
|
9
|
+
<version>1.0.0</version>
|
|
10
|
+
</versions>
|
|
11
|
+
<lastUpdated>20251218105025</lastUpdated>
|
|
12
|
+
</versioning>
|
|
13
|
+
</metadata>
|
|
Binary file
|
package/android/libs/id/bureau/behavioural-biometrics/1.0.0/behavioural-biometrics-1.0.0.module
ADDED
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formatVersion": "1.1",
|
|
3
|
+
"component": {
|
|
4
|
+
"group": "id.bureau",
|
|
5
|
+
"module": "behavioural-biometrics",
|
|
6
|
+
"version": "1.0.0",
|
|
7
|
+
"attributes": {
|
|
8
|
+
"org.gradle.status": "release"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"createdBy": {
|
|
12
|
+
"gradle": {
|
|
13
|
+
"version": "7.4.2"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"variants": [
|
|
17
|
+
{
|
|
18
|
+
"name": "releaseApiElements-published",
|
|
19
|
+
"attributes": {
|
|
20
|
+
"org.gradle.category": "library",
|
|
21
|
+
"org.gradle.usage": "java-api",
|
|
22
|
+
"org.jetbrains.kotlin.platform.type": "androidJvm"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": [
|
|
25
|
+
{
|
|
26
|
+
"group": "id.bureau",
|
|
27
|
+
"module": "base",
|
|
28
|
+
"version": {
|
|
29
|
+
"requires": "1.0.0"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"group": "id.bureau",
|
|
34
|
+
"module": "network",
|
|
35
|
+
"version": {
|
|
36
|
+
"requires": "1.0.0"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"group": "id.bureau",
|
|
41
|
+
"module": "backend-config",
|
|
42
|
+
"version": {
|
|
43
|
+
"requires": "1.0.0"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"group": "org.jetbrains.kotlin",
|
|
48
|
+
"module": "kotlin-stdlib-jdk8",
|
|
49
|
+
"version": {
|
|
50
|
+
"requires": "1.6.21"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
],
|
|
54
|
+
"files": [
|
|
55
|
+
{
|
|
56
|
+
"name": "behavioural-biometrics-1.0.0.aar",
|
|
57
|
+
"url": "behavioural-biometrics-1.0.0.aar",
|
|
58
|
+
"size": 103111,
|
|
59
|
+
"sha512": "ca79c5786f8160038ea0669c1348b541b3dd8e18e62d1b77b26f800ceef9b782d4bfaa5e93d8491c6332ecc1dc09eddd0cdd5285587edc91ee31885c078bf47c",
|
|
60
|
+
"sha256": "84a5065f6f4d12825d896859dd8b2a784c29190c8b1d8cc9f01d894c3bd41ab9",
|
|
61
|
+
"sha1": "b3e35f3ef45eb1c4b7fb2bbb9960286e97fe2600",
|
|
62
|
+
"md5": "372d3fc09ac9a99df02c6af844bc8cd8"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "releaseRuntimeElements-published",
|
|
68
|
+
"attributes": {
|
|
69
|
+
"org.gradle.category": "library",
|
|
70
|
+
"org.gradle.usage": "java-runtime",
|
|
71
|
+
"org.jetbrains.kotlin.platform.type": "androidJvm"
|
|
72
|
+
},
|
|
73
|
+
"dependencies": [
|
|
74
|
+
{
|
|
75
|
+
"group": "id.bureau",
|
|
76
|
+
"module": "base",
|
|
77
|
+
"version": {
|
|
78
|
+
"requires": "1.0.0"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"group": "id.bureau",
|
|
83
|
+
"module": "network",
|
|
84
|
+
"version": {
|
|
85
|
+
"requires": "1.0.0"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"group": "id.bureau",
|
|
90
|
+
"module": "backend-config",
|
|
91
|
+
"version": {
|
|
92
|
+
"requires": "1.0.0"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"group": "org.jetbrains.kotlin",
|
|
97
|
+
"module": "kotlin-stdlib-jdk8",
|
|
98
|
+
"version": {
|
|
99
|
+
"requires": "1.6.21"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"group": "io.michaelrocks",
|
|
104
|
+
"module": "paranoid-core",
|
|
105
|
+
"version": {
|
|
106
|
+
"requires": "0.3.7"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"group": "androidx.core",
|
|
111
|
+
"module": "core-ktx",
|
|
112
|
+
"version": {
|
|
113
|
+
"requires": "1.8.0"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"group": "androidx.appcompat",
|
|
118
|
+
"module": "appcompat",
|
|
119
|
+
"version": {
|
|
120
|
+
"requires": "1.6.1"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"group": "androidx.recyclerview",
|
|
125
|
+
"module": "recyclerview",
|
|
126
|
+
"version": {
|
|
127
|
+
"requires": "1.1.0-beta02"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"group": "com.google.android.material",
|
|
132
|
+
"module": "material",
|
|
133
|
+
"version": {
|
|
134
|
+
"requires": "1.3.0"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"group": "com.google.dagger",
|
|
139
|
+
"module": "dagger-android",
|
|
140
|
+
"version": {
|
|
141
|
+
"requires": "2.41"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"group": "com.google.dagger",
|
|
146
|
+
"module": "dagger-android-support",
|
|
147
|
+
"version": {
|
|
148
|
+
"requires": "2.41"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"group": "com.squareup.okhttp3",
|
|
153
|
+
"module": "okhttp",
|
|
154
|
+
"version": {
|
|
155
|
+
"requires": "4.11.0"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"group": "com.squareup.okhttp3",
|
|
160
|
+
"module": "logging-interceptor",
|
|
161
|
+
"version": {
|
|
162
|
+
"requires": "4.11.0"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"group": "com.squareup.retrofit2",
|
|
167
|
+
"module": "retrofit",
|
|
168
|
+
"version": {
|
|
169
|
+
"requires": "2.9.0"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"group": "com.google.code.gson",
|
|
174
|
+
"module": "gson",
|
|
175
|
+
"version": {
|
|
176
|
+
"requires": "2.10.1"
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"files": [
|
|
181
|
+
{
|
|
182
|
+
"name": "behavioural-biometrics-1.0.0.aar",
|
|
183
|
+
"url": "behavioural-biometrics-1.0.0.aar",
|
|
184
|
+
"size": 103111,
|
|
185
|
+
"sha512": "ca79c5786f8160038ea0669c1348b541b3dd8e18e62d1b77b26f800ceef9b782d4bfaa5e93d8491c6332ecc1dc09eddd0cdd5285587edc91ee31885c078bf47c",
|
|
186
|
+
"sha256": "84a5065f6f4d12825d896859dd8b2a784c29190c8b1d8cc9f01d894c3bd41ab9",
|
|
187
|
+
"sha1": "b3e35f3ef45eb1c4b7fb2bbb9960286e97fe2600",
|
|
188
|
+
"md5": "372d3fc09ac9a99df02c6af844bc8cd8"
|
|
189
|
+
}
|
|
190
|
+
]
|
|
191
|
+
}
|
|
192
|
+
]
|
|
193
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
4
|
+
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
5
|
+
<!-- which should be used instead. Do not delete the following line which -->
|
|
6
|
+
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
7
|
+
<!-- that they should prefer consuming it instead. -->
|
|
8
|
+
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
9
|
+
<modelVersion>4.0.0</modelVersion>
|
|
10
|
+
<groupId>id.bureau</groupId>
|
|
11
|
+
<artifactId>behavioural-biometrics</artifactId>
|
|
12
|
+
<version>1.0.0</version>
|
|
13
|
+
<packaging>aar</packaging>
|
|
14
|
+
<dependencies>
|
|
15
|
+
<dependency>
|
|
16
|
+
<groupId>id.bureau</groupId>
|
|
17
|
+
<artifactId>base</artifactId>
|
|
18
|
+
<version>1.0.0</version>
|
|
19
|
+
<scope>compile</scope>
|
|
20
|
+
</dependency>
|
|
21
|
+
<dependency>
|
|
22
|
+
<groupId>id.bureau</groupId>
|
|
23
|
+
<artifactId>network</artifactId>
|
|
24
|
+
<version>1.0.0</version>
|
|
25
|
+
<scope>compile</scope>
|
|
26
|
+
</dependency>
|
|
27
|
+
<dependency>
|
|
28
|
+
<groupId>id.bureau</groupId>
|
|
29
|
+
<artifactId>backend-config</artifactId>
|
|
30
|
+
<version>1.0.0</version>
|
|
31
|
+
<scope>compile</scope>
|
|
32
|
+
</dependency>
|
|
33
|
+
<dependency>
|
|
34
|
+
<groupId>org.jetbrains.kotlin</groupId>
|
|
35
|
+
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
36
|
+
<version>1.6.21</version>
|
|
37
|
+
<scope>compile</scope>
|
|
38
|
+
</dependency>
|
|
39
|
+
<dependency>
|
|
40
|
+
<groupId>io.michaelrocks</groupId>
|
|
41
|
+
<artifactId>paranoid-core</artifactId>
|
|
42
|
+
<version>0.3.7</version>
|
|
43
|
+
<scope>runtime</scope>
|
|
44
|
+
</dependency>
|
|
45
|
+
<dependency>
|
|
46
|
+
<groupId>androidx.core</groupId>
|
|
47
|
+
<artifactId>core-ktx</artifactId>
|
|
48
|
+
<version>1.8.0</version>
|
|
49
|
+
<scope>runtime</scope>
|
|
50
|
+
</dependency>
|
|
51
|
+
<dependency>
|
|
52
|
+
<groupId>androidx.appcompat</groupId>
|
|
53
|
+
<artifactId>appcompat</artifactId>
|
|
54
|
+
<version>1.6.1</version>
|
|
55
|
+
<scope>runtime</scope>
|
|
56
|
+
</dependency>
|
|
57
|
+
<dependency>
|
|
58
|
+
<groupId>androidx.recyclerview</groupId>
|
|
59
|
+
<artifactId>recyclerview</artifactId>
|
|
60
|
+
<version>1.1.0-beta02</version>
|
|
61
|
+
<scope>runtime</scope>
|
|
62
|
+
</dependency>
|
|
63
|
+
<dependency>
|
|
64
|
+
<groupId>com.google.android.material</groupId>
|
|
65
|
+
<artifactId>material</artifactId>
|
|
66
|
+
<version>1.3.0</version>
|
|
67
|
+
<scope>runtime</scope>
|
|
68
|
+
</dependency>
|
|
69
|
+
<dependency>
|
|
70
|
+
<groupId>com.google.dagger</groupId>
|
|
71
|
+
<artifactId>dagger-android</artifactId>
|
|
72
|
+
<version>2.41</version>
|
|
73
|
+
<scope>runtime</scope>
|
|
74
|
+
</dependency>
|
|
75
|
+
<dependency>
|
|
76
|
+
<groupId>com.google.dagger</groupId>
|
|
77
|
+
<artifactId>dagger-android-support</artifactId>
|
|
78
|
+
<version>2.41</version>
|
|
79
|
+
<scope>runtime</scope>
|
|
80
|
+
</dependency>
|
|
81
|
+
<dependency>
|
|
82
|
+
<groupId>com.squareup.okhttp3</groupId>
|
|
83
|
+
<artifactId>okhttp</artifactId>
|
|
84
|
+
<version>4.11.0</version>
|
|
85
|
+
<scope>runtime</scope>
|
|
86
|
+
</dependency>
|
|
87
|
+
<dependency>
|
|
88
|
+
<groupId>com.squareup.okhttp3</groupId>
|
|
89
|
+
<artifactId>logging-interceptor</artifactId>
|
|
90
|
+
<version>4.11.0</version>
|
|
91
|
+
<scope>runtime</scope>
|
|
92
|
+
</dependency>
|
|
93
|
+
<dependency>
|
|
94
|
+
<groupId>com.squareup.retrofit2</groupId>
|
|
95
|
+
<artifactId>retrofit</artifactId>
|
|
96
|
+
<version>2.9.0</version>
|
|
97
|
+
<scope>runtime</scope>
|
|
98
|
+
</dependency>
|
|
99
|
+
<dependency>
|
|
100
|
+
<groupId>com.google.code.gson</groupId>
|
|
101
|
+
<artifactId>gson</artifactId>
|
|
102
|
+
<version>2.10.1</version>
|
|
103
|
+
<scope>runtime</scope>
|
|
104
|
+
</dependency>
|
|
105
|
+
</dependencies>
|
|
106
|
+
</project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<metadata>
|
|
3
|
+
<groupId>id.bureau</groupId>
|
|
4
|
+
<artifactId>behavioural-biometrics</artifactId>
|
|
5
|
+
<versioning>
|
|
6
|
+
<latest>1.0.0</latest>
|
|
7
|
+
<release>1.0.0</release>
|
|
8
|
+
<versions>
|
|
9
|
+
<version>1.0.0</version>
|
|
10
|
+
</versions>
|
|
11
|
+
<lastUpdated>20251218105027</lastUpdated>
|
|
12
|
+
</versioning>
|
|
13
|
+
</metadata>
|
|
Binary file
|