-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Randomized face direction * Add halfway captures * add stability timer * Add docs, cleanup * Move to util; add constants * Bump versions * Add useStrictMode (#362) * Add useStrictMode * Fix test * Bump versions * Active liveness UI (#363) * Add useStrictMode * wip * New UI prototype, less finicky * add docs * More UI updates * Fix test * Add active liveness forced failure and update design (#364) * Add useStrictMode * wip * New UI prototype, less finicky * add docs * More UI updates * Add metadata * Fix test * Add forced failure * update timeout * remove unused value * add breadcrumbs * increase num liveness images and add doc * prevent rotation * Add CameraFrameCornerBorder * restructure + loading/success/error * cleanup * Update library version * Add smile directive * Use Lottie for directive animations (#366) * Add Lottie face animation * Fix need light animation * Add Enrollment v2 (#367) * Add Enrollment v2 * Fix test * Impose upper bound on active liveness head angle (#368) * Impose upper bound on active liveness head angle * Update condition * Add missing compatibility properties, agent mode, and attribution * Move to constants * Bump lottie * Fix bad version * Metadata * Allow parameter tuning * Active liveness parameter tuning. Update face quality model input crop * Add header metadata back for now * Fix contour out of bounds https://smile-identity.sentry.io/issues/5453193521 * Make feedback more responsive during active liveness * ignore certain faces. debug output * Update CHANGELOG * Fix viewfinder rect * Lint * Merge * Reset capture progress on orientation change (#382) * Reset capture progress on orientation change * Lint * Bump versions * UI update and task confirmation (#385) * Parameter updates, clipboard copy, larger UI * Fail active liveness after timeout (#390) * Use oval cutout * Update parameters * Remove parameter tuning and debug output * Add useStrictMode to top level composable * Use Strict Mode naming on main screen * Update versions * MetadataAdapter comment * Add metadata to prepUpload * Track document image origin (#398) * Track document image origin * Update test * Update test * Update test * Add fingerprint (#400) * Track document image origin * Update test * Add fingerprint * Use default empty string instead of lateinit var * Update test * Track metrics using CompositionLocal (#402) * Track metrics using CompositionLocal * Clear DocumentCapture metadata on retry * Clarify some metadata * Update naming and format * Update names * Send metadata on DocV * Fix enum value * Update CHANGELOG * Merge * Fix colors * Remove fingerprint JS * Update settings.gradle.kts * Prepare for 10.2.1 release
- Loading branch information
Showing
30 changed files
with
350 additions
and
37 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
10.2.1-SNAPSHOT | ||
10.2.2-SNAPSHOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
lib/src/main/java/com/smileidentity/compose/components/MetadataCompositionLocal.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.smileidentity.compose.components | ||
|
||
import android.annotation.SuppressLint | ||
import androidx.compose.runtime.staticCompositionLocalOf | ||
import androidx.compose.runtime.toMutableStateList | ||
import com.smileidentity.models.v2.Metadata | ||
|
||
@SuppressLint("ComposeCompositionLocalUsage") | ||
val LocalMetadata = staticCompositionLocalOf { Metadata.default().items.toMutableStateList() } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.