Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ Import the dependencies in `build.gradle.kts`:

```kotlin
// To add the full Biometric SDK
implementation("com.simprints.biometrics:simface:2026.1.0")
implementation("com.simprints.biometrics:simface:2026.2.0")

// Or if only quality assessment is needed
implementation("com.simprints.biometrics:simq:2026.1.0")
implementation("com.simprints.biometrics:simq:2026.2.0")
```

## SimFace Demo app
Expand Down
2 changes: 1 addition & 1 deletion simface/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ maven {
2. Import the dependencies in `build.gradle.kts`:

```kotlin
implementation("com.simprints.biometrics:simface:2026.1.0")
implementation("com.simprints.biometrics:simface:2026.2.0")
```

## Implement the functionality.
Expand Down
2 changes: 1 addition & 1 deletion simface/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

val projectGroupId = "com.simprints.biometrics"
val projectArtifactId = "simface"
val projectVersion = "2026.1.0"
val projectVersion = "2026.2.0"

group = projectGroupId
version = projectVersion
Expand Down
2 changes: 1 addition & 1 deletion simq/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ SimQ evaluates face images based on four key metrics:
Add the dependency to your `build.gradle.kts`:

```kotlin
implementation("com.simprints.biometrics:simq:2026.1.0")
implementation("com.simprints.biometrics:simq:2026.2.0")
```

## Basic Usage
Expand Down
2 changes: 1 addition & 1 deletion simq/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {

val projectGroupId = "com.simprints.biometrics"
val projectArtifactId = "simq"
val projectVersion = "2026.1.0"
val projectVersion = "2026.2.0"

group = projectGroupId
version = projectVersion
Expand Down
Loading