bureau-sdk 0.0.1
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/2.0.0/analytics-2.0.0.aar +0 -0
- package/android/libs/id/bureau/analytics/2.0.0/analytics-2.0.0.module +137 -0
- package/android/libs/id/bureau/analytics/2.0.0/analytics-2.0.0.pom +64 -0
- package/android/libs/id/bureau/analytics/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/backend-config/2.0.0/backend-config-2.0.0.aar +0 -0
- package/android/libs/id/bureau/backend-config/2.0.0/backend-config-2.0.0.module +179 -0
- package/android/libs/id/bureau/backend-config/2.0.0/backend-config-2.0.0.pom +100 -0
- package/android/libs/id/bureau/backend-config/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/base/2.0.0/base-2.0.0.aar +0 -0
- package/android/libs/id/bureau/base/2.0.0/base-2.0.0.module +102 -0
- package/android/libs/id/bureau/base/2.0.0/base-2.0.0.pom +46 -0
- package/android/libs/id/bureau/base/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/behavioural-biometrics/2.0.0/behavioural-biometrics-2.0.0.aar +0 -0
- package/android/libs/id/bureau/behavioural-biometrics/2.0.0/behavioural-biometrics-2.0.0.module +193 -0
- package/android/libs/id/bureau/behavioural-biometrics/2.0.0/behavioural-biometrics-2.0.0.pom +106 -0
- package/android/libs/id/bureau/behavioural-biometrics/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/bureausdk/2.0.0/bureausdk-2.0.0.aar +0 -0
- package/android/libs/id/bureau/bureausdk/2.0.0/bureausdk-2.0.0.module +144 -0
- package/android/libs/id/bureau/bureausdk/2.0.0/bureausdk-2.0.0.pom +58 -0
- package/android/libs/id/bureau/bureausdk/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/checkRoot/2.0.0/checkRoot-2.0.0.aar +0 -0
- package/android/libs/id/bureau/checkRoot/2.0.0/checkRoot-2.0.0.module +88 -0
- package/android/libs/id/bureau/checkRoot/2.0.0/checkRoot-2.0.0.pom +34 -0
- package/android/libs/id/bureau/checkRoot/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/device-intelligence/2.0.0/device-intelligence-2.0.0.aar +0 -0
- package/android/libs/id/bureau/device-intelligence/2.0.0/device-intelligence-2.0.0.module +228 -0
- package/android/libs/id/bureau/device-intelligence/2.0.0/device-intelligence-2.0.0.pom +124 -0
- package/android/libs/id/bureau/device-intelligence/maven-metadata-local.xml +13 -0
- package/android/libs/id/bureau/network/2.0.0/network-2.0.0.aar +0 -0
- package/android/libs/id/bureau/network/2.0.0/network-2.0.0.module +109 -0
- package/android/libs/id/bureau/network/2.0.0/network-2.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
package/README.md
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
# @bureau/device-intelligence
|
|
2
|
+
|
|
3
|
+
React Native SDK for Bureau Device Intelligence with sophisticated native module integration.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
yarn add @bureau/device-intelligence
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### iOS Setup
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
cd ios && pod install
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
### Android Setup
|
|
18
|
+
|
|
19
|
+
No additional setup required for Android.
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
```typescript
|
|
24
|
+
import { BureauSDK, Environment } from '@bureau/device-intelligence';
|
|
25
|
+
|
|
26
|
+
// Initialize the SDK
|
|
27
|
+
BureauSDK.init({
|
|
28
|
+
credentialId: 'your-credential-id',
|
|
29
|
+
env: Environment.STAGING,
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
// Set user information
|
|
33
|
+
BureauSDK.setUserId('user-123');
|
|
34
|
+
BureauSDK.setMetaInfo({
|
|
35
|
+
sessionId: 'session-456',
|
|
36
|
+
flow: 'onboarding',
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
// Submit device intelligence data
|
|
40
|
+
const result = await BureauSDK.submit();
|
|
41
|
+
console.log('Device insights:', result.insights);
|
|
42
|
+
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## API Reference
|
|
46
|
+
|
|
47
|
+
### Core Functions
|
|
48
|
+
|
|
49
|
+
- `BureauSDK.init(config: BureauConfig): void` - Initialize the SDK
|
|
50
|
+
- `BureauSDK.submit(): Promise<SubmitResponse>` - Submit device data
|
|
51
|
+
- `BureauSDK.isInitialized(): Promise<boolean>` - Check if SDK is initialized
|
|
52
|
+
- `BureauSDK.getUserId(): Promise<string>` - Get current user ID
|
|
53
|
+
|
|
54
|
+
### Configuration Functions
|
|
55
|
+
|
|
56
|
+
- (Deprecated) Functions such as `setUserId`, `setMetaInfo`, `setFlow`, `enableRiskMonitoring`, and `disableMonitoring` have been removed from the public API.
|
|
57
|
+
|
|
58
|
+
### Types
|
|
59
|
+
|
|
60
|
+
- `BureauConfig` - SDK configuration
|
|
61
|
+
- `MetaInfo` - Metadata information
|
|
62
|
+
- `SubmitResponse` - Response from device intelligence submission
|
|
63
|
+
- `RiskMonitoringOptions` - Risk monitoring configuration
|
|
64
|
+
- `SuspiciousSignalCallback` - Callback functions for suspicious signals
|
|
65
|
+
- `Environment` - SDK environment (PRODUCTION, STAGING)
|
|
66
|
+
- `RiskMonitoringMode` - Monitoring mode (CONTINUOUS, INSTANT)
|
|
67
|
+
|
|
68
|
+
## Native Module Integration
|
|
69
|
+
|
|
70
|
+
### iOS
|
|
71
|
+
|
|
72
|
+
The iOS native module provides:
|
|
73
|
+
- Device fingerprinting
|
|
74
|
+
- Jailbreak detection
|
|
75
|
+
- App store validation
|
|
76
|
+
- Frida detection
|
|
77
|
+
- Risk assessment
|
|
78
|
+
|
|
79
|
+
### Android
|
|
80
|
+
|
|
81
|
+
The Android native module provides:
|
|
82
|
+
- Device fingerprinting
|
|
83
|
+
- Root detection
|
|
84
|
+
- ADB status monitoring
|
|
85
|
+
- App cloning detection
|
|
86
|
+
- Debugging detection
|
|
87
|
+
- Risk assessment
|
|
88
|
+
|
|
89
|
+
## Permissions
|
|
90
|
+
|
|
91
|
+
The SDK requires the following permissions:
|
|
92
|
+
|
|
93
|
+
### Android
|
|
94
|
+
|
|
95
|
+
```xml
|
|
96
|
+
<uses-permission android:name="android.permission.INTERNET" />
|
|
97
|
+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
98
|
+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
### iOS
|
|
102
|
+
|
|
103
|
+
No additional permissions required.
|
|
104
|
+
|
|
105
|
+
## License
|
|
106
|
+
|
|
107
|
+
MIT
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
buildscript {
|
|
2
|
+
// Buildscript is evaluated before everything else so we can't use getExtOrDefault
|
|
3
|
+
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["SampleNativeModule_kotlinVersion"]
|
|
4
|
+
|
|
5
|
+
repositories {
|
|
6
|
+
google()
|
|
7
|
+
mavenCentral()
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
dependencies {
|
|
11
|
+
classpath "com.android.tools.build:gradle:8.0.2"
|
|
12
|
+
// noinspection DifferentKotlinGradleVersion
|
|
13
|
+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
def isNewArchitectureEnabled() {
|
|
18
|
+
return rootProject.hasProperty("newArchEnabled") && rootProject.getProperty("newArchEnabled") == "true"
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
def pluginLibsDir = file("${projectDir}/libs")
|
|
22
|
+
|
|
23
|
+
repositories {
|
|
24
|
+
google()
|
|
25
|
+
mavenCentral()
|
|
26
|
+
|
|
27
|
+
maven {
|
|
28
|
+
url = pluginLibsDir.toURI()
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Make the repository available to the root project when included as a subproject
|
|
33
|
+
if (project != project.rootProject) {
|
|
34
|
+
project.rootProject.allprojects {
|
|
35
|
+
repositories {
|
|
36
|
+
maven {
|
|
37
|
+
url = pluginLibsDir.toURI()
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
apply plugin: "com.android.library"
|
|
44
|
+
apply plugin: "kotlin-android"
|
|
45
|
+
|
|
46
|
+
if (isNewArchitectureEnabled()) {
|
|
47
|
+
apply plugin: "com.facebook.react"
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
def getExtOrDefault(name) {
|
|
51
|
+
return rootProject.ext.has(name) ? rootProject.ext.get(name) : project.properties["SampleNativeModule_" + name]
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
def getExtOrIntegerDefault(name) {
|
|
55
|
+
return rootProject.ext.has(name) ? rootProject.ext.get(name) : (project.properties["SampleNativeModule_" + name]).toInteger()
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
def supportsNamespace() {
|
|
59
|
+
def parsed = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')
|
|
60
|
+
def major = parsed[0].toInteger()
|
|
61
|
+
def minor = parsed[1].toInteger()
|
|
62
|
+
|
|
63
|
+
// Namespace support was added in 7.3.0
|
|
64
|
+
return (major == 7 && minor >= 3) || major >= 8
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
android {
|
|
68
|
+
if (supportsNamespace()) {
|
|
69
|
+
namespace "com.samplenativemodule"
|
|
70
|
+
|
|
71
|
+
sourceSets {
|
|
72
|
+
main {
|
|
73
|
+
manifest.srcFile "src/main/AndroidManifestNew.xml"
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
compileSdkVersion getExtOrIntegerDefault("compileSdkVersion")
|
|
79
|
+
|
|
80
|
+
defaultConfig {
|
|
81
|
+
minSdkVersion getExtOrIntegerDefault("minSdkVersion")
|
|
82
|
+
targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
|
|
83
|
+
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
buildTypes {
|
|
87
|
+
release {
|
|
88
|
+
minifyEnabled false
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
lintOptions {
|
|
93
|
+
disable "GradleCompatible"
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
compileOptions {
|
|
97
|
+
sourceCompatibility JavaVersion.VERSION_11
|
|
98
|
+
targetCompatibility JavaVersion.VERSION_11
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
rootProject.allprojects {
|
|
103
|
+
repositories {
|
|
104
|
+
maven { url "https://packages.bureau.id/api/packages/Bureau/maven" }
|
|
105
|
+
mavenCentral()
|
|
106
|
+
google()
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
111
|
+
|
|
112
|
+
dependencies {
|
|
113
|
+
// For < 0.71, this will be from the local maven repo
|
|
114
|
+
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
|
|
115
|
+
//noinspection GradleDynamicVersion
|
|
116
|
+
implementation "com.facebook.react:react-native:+"
|
|
117
|
+
implementation 'id.bureau:bureausdk:2.0.0'
|
|
118
|
+
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
119
|
+
}
|
|
120
|
+
|
|
Binary file
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formatVersion": "1.1",
|
|
3
|
+
"component": {
|
|
4
|
+
"group": "id.bureau",
|
|
5
|
+
"module": "analytics",
|
|
6
|
+
"version": "2.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": "2.0.0"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"group": "id.bureau",
|
|
34
|
+
"module": "network",
|
|
35
|
+
"version": {
|
|
36
|
+
"requires": "2.0.0"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"group": "org.jetbrains.kotlin",
|
|
41
|
+
"module": "kotlin-stdlib-jdk8",
|
|
42
|
+
"version": {
|
|
43
|
+
"requires": "1.6.21"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"files": [
|
|
48
|
+
{
|
|
49
|
+
"name": "analytics-2.0.0.aar",
|
|
50
|
+
"url": "analytics-2.0.0.aar",
|
|
51
|
+
"size": 10401,
|
|
52
|
+
"sha512": "92bf51a946883f5e8034c5b769175bc06338113c5489470cf3dde4cad397ae7070db3db917c348e59765f8bc336768ceea27373f8d7c408ce3c00b420eac1eab",
|
|
53
|
+
"sha256": "15e5fde7f403a34b19a7cea0f159d86a6d295ef69fb90ea04e267579eac2854b",
|
|
54
|
+
"sha1": "c323fd1b44ded8cb36feca93004939a5bc1356cc",
|
|
55
|
+
"md5": "8db4822abdf05fa17152e77546eb46f1"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "releaseRuntimeElements-published",
|
|
61
|
+
"attributes": {
|
|
62
|
+
"org.gradle.category": "library",
|
|
63
|
+
"org.gradle.usage": "java-runtime",
|
|
64
|
+
"org.jetbrains.kotlin.platform.type": "androidJvm"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": [
|
|
67
|
+
{
|
|
68
|
+
"group": "id.bureau",
|
|
69
|
+
"module": "base",
|
|
70
|
+
"version": {
|
|
71
|
+
"requires": "2.0.0"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"group": "id.bureau",
|
|
76
|
+
"module": "network",
|
|
77
|
+
"version": {
|
|
78
|
+
"requires": "2.0.0"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"group": "org.jetbrains.kotlin",
|
|
83
|
+
"module": "kotlin-stdlib-jdk8",
|
|
84
|
+
"version": {
|
|
85
|
+
"requires": "1.6.21"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"group": "io.michaelrocks",
|
|
90
|
+
"module": "paranoid-core",
|
|
91
|
+
"version": {
|
|
92
|
+
"requires": "0.3.7"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"group": "androidx.core",
|
|
97
|
+
"module": "core-ktx",
|
|
98
|
+
"version": {
|
|
99
|
+
"requires": "1.8.0"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"group": "com.google.code.gson",
|
|
104
|
+
"module": "gson",
|
|
105
|
+
"version": {
|
|
106
|
+
"requires": "2.10.1"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"group": "org.jetbrains.kotlinx",
|
|
111
|
+
"module": "kotlinx-coroutines-android",
|
|
112
|
+
"version": {
|
|
113
|
+
"requires": "1.6.4"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"group": "com.squareup.retrofit2",
|
|
118
|
+
"module": "retrofit",
|
|
119
|
+
"version": {
|
|
120
|
+
"requires": "2.9.0"
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
],
|
|
124
|
+
"files": [
|
|
125
|
+
{
|
|
126
|
+
"name": "analytics-2.0.0.aar",
|
|
127
|
+
"url": "analytics-2.0.0.aar",
|
|
128
|
+
"size": 10401,
|
|
129
|
+
"sha512": "92bf51a946883f5e8034c5b769175bc06338113c5489470cf3dde4cad397ae7070db3db917c348e59765f8bc336768ceea27373f8d7c408ce3c00b420eac1eab",
|
|
130
|
+
"sha256": "15e5fde7f403a34b19a7cea0f159d86a6d295ef69fb90ea04e267579eac2854b",
|
|
131
|
+
"sha1": "c323fd1b44ded8cb36feca93004939a5bc1356cc",
|
|
132
|
+
"md5": "8db4822abdf05fa17152e77546eb46f1"
|
|
133
|
+
}
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
]
|
|
137
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
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>analytics</artifactId>
|
|
12
|
+
<version>2.0.0</version>
|
|
13
|
+
<packaging>aar</packaging>
|
|
14
|
+
<dependencies>
|
|
15
|
+
<dependency>
|
|
16
|
+
<groupId>id.bureau</groupId>
|
|
17
|
+
<artifactId>base</artifactId>
|
|
18
|
+
<version>2.0.0</version>
|
|
19
|
+
<scope>compile</scope>
|
|
20
|
+
</dependency>
|
|
21
|
+
<dependency>
|
|
22
|
+
<groupId>id.bureau</groupId>
|
|
23
|
+
<artifactId>network</artifactId>
|
|
24
|
+
<version>2.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>com.google.code.gson</groupId>
|
|
47
|
+
<artifactId>gson</artifactId>
|
|
48
|
+
<version>2.10.1</version>
|
|
49
|
+
<scope>runtime</scope>
|
|
50
|
+
</dependency>
|
|
51
|
+
<dependency>
|
|
52
|
+
<groupId>org.jetbrains.kotlinx</groupId>
|
|
53
|
+
<artifactId>kotlinx-coroutines-android</artifactId>
|
|
54
|
+
<version>1.6.4</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
|
+
</dependencies>
|
|
64
|
+
</project>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<metadata>
|
|
3
|
+
<groupId>id.bureau</groupId>
|
|
4
|
+
<artifactId>analytics</artifactId>
|
|
5
|
+
<versioning>
|
|
6
|
+
<latest>2.0.0</latest>
|
|
7
|
+
<release>2.0.0</release>
|
|
8
|
+
<versions>
|
|
9
|
+
<version>2.0.0</version>
|
|
10
|
+
</versions>
|
|
11
|
+
<lastUpdated>20260120102419</lastUpdated>
|
|
12
|
+
</versioning>
|
|
13
|
+
</metadata>
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
{
|
|
2
|
+
"formatVersion": "1.1",
|
|
3
|
+
"component": {
|
|
4
|
+
"group": "id.bureau",
|
|
5
|
+
"module": "backend-config",
|
|
6
|
+
"version": "2.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": "network",
|
|
28
|
+
"version": {
|
|
29
|
+
"requires": "2.0.0"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"group": "id.bureau",
|
|
34
|
+
"module": "base",
|
|
35
|
+
"version": {
|
|
36
|
+
"requires": "2.0.0"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"group": "org.jetbrains.kotlin",
|
|
41
|
+
"module": "kotlin-stdlib-jdk8",
|
|
42
|
+
"version": {
|
|
43
|
+
"requires": "1.6.21"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
"files": [
|
|
48
|
+
{
|
|
49
|
+
"name": "backend-config-2.0.0.aar",
|
|
50
|
+
"url": "backend-config-2.0.0.aar",
|
|
51
|
+
"size": 61199,
|
|
52
|
+
"sha512": "f0797b90350676532fee4bf3327aeecdf69a50e28dbd6978d4d57c1cb76eaca75035aa54e02b8bc105f1ae60e12bb9b67905f574906250843e4647f6d36446c5",
|
|
53
|
+
"sha256": "b4d6d278e4cfba643c982d573b62fdd0064081ad864586f58abc46f85b996e01",
|
|
54
|
+
"sha1": "c9501cc4a04f0c4c508402221b0f59ca5a3ac765",
|
|
55
|
+
"md5": "4300afa499ba3ebbf90a95758018a898"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"name": "releaseRuntimeElements-published",
|
|
61
|
+
"attributes": {
|
|
62
|
+
"org.gradle.category": "library",
|
|
63
|
+
"org.gradle.usage": "java-runtime",
|
|
64
|
+
"org.jetbrains.kotlin.platform.type": "androidJvm"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": [
|
|
67
|
+
{
|
|
68
|
+
"group": "id.bureau",
|
|
69
|
+
"module": "network",
|
|
70
|
+
"version": {
|
|
71
|
+
"requires": "2.0.0"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"group": "id.bureau",
|
|
76
|
+
"module": "base",
|
|
77
|
+
"version": {
|
|
78
|
+
"requires": "2.0.0"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"group": "org.jetbrains.kotlin",
|
|
83
|
+
"module": "kotlin-stdlib-jdk8",
|
|
84
|
+
"version": {
|
|
85
|
+
"requires": "1.6.21"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"group": "io.michaelrocks",
|
|
90
|
+
"module": "paranoid-core",
|
|
91
|
+
"version": {
|
|
92
|
+
"requires": "0.3.7"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"group": "androidx.core",
|
|
97
|
+
"module": "core-ktx",
|
|
98
|
+
"version": {
|
|
99
|
+
"requires": "1.8.0"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"group": "org.jetbrains.kotlinx",
|
|
104
|
+
"module": "kotlinx-coroutines-android",
|
|
105
|
+
"version": {
|
|
106
|
+
"requires": "1.6.4"
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"group": "com.google.code.gson",
|
|
111
|
+
"module": "gson",
|
|
112
|
+
"version": {
|
|
113
|
+
"requires": "2.10.1"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"group": "com.squareup.retrofit2",
|
|
118
|
+
"module": "retrofit",
|
|
119
|
+
"version": {
|
|
120
|
+
"requires": "2.9.0"
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"group": "androidx.datastore",
|
|
125
|
+
"module": "datastore-preferences",
|
|
126
|
+
"version": {
|
|
127
|
+
"requires": "1.0.0"
|
|
128
|
+
}
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"group": "com.google.android.gms",
|
|
132
|
+
"module": "play-services-time",
|
|
133
|
+
"version": {
|
|
134
|
+
"requires": "16.0.1"
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"group": "org.jetbrains.kotlinx",
|
|
139
|
+
"module": "kotlinx-coroutines-play-services",
|
|
140
|
+
"version": {
|
|
141
|
+
"requires": "1.6.4"
|
|
142
|
+
}
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"group": "com.google.dagger",
|
|
146
|
+
"module": "dagger",
|
|
147
|
+
"version": {
|
|
148
|
+
"requires": "2.41"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"group": "com.google.dagger",
|
|
153
|
+
"module": "dagger-android",
|
|
154
|
+
"version": {
|
|
155
|
+
"requires": "2.41"
|
|
156
|
+
}
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"group": "com.google.dagger",
|
|
160
|
+
"module": "dagger-android-support",
|
|
161
|
+
"version": {
|
|
162
|
+
"requires": "2.41"
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
],
|
|
166
|
+
"files": [
|
|
167
|
+
{
|
|
168
|
+
"name": "backend-config-2.0.0.aar",
|
|
169
|
+
"url": "backend-config-2.0.0.aar",
|
|
170
|
+
"size": 61199,
|
|
171
|
+
"sha512": "f0797b90350676532fee4bf3327aeecdf69a50e28dbd6978d4d57c1cb76eaca75035aa54e02b8bc105f1ae60e12bb9b67905f574906250843e4647f6d36446c5",
|
|
172
|
+
"sha256": "b4d6d278e4cfba643c982d573b62fdd0064081ad864586f58abc46f85b996e01",
|
|
173
|
+
"sha1": "c9501cc4a04f0c4c508402221b0f59ca5a3ac765",
|
|
174
|
+
"md5": "4300afa499ba3ebbf90a95758018a898"
|
|
175
|
+
}
|
|
176
|
+
]
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
}
|