Skip to content

Commit

Permalink
[Android] [iOS] Release v1.0.0 (#42)
Browse files Browse the repository at this point in the history
This prepares both apps to release v1.0.0
  • Loading branch information
Juliano1612 authored Nov 11, 2024
1 parent 52d6546 commit eace8ee
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 21 deletions.
4 changes: 2 additions & 2 deletions example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId = "com.spruceid.mobilesdkexample"
minSdk = 26
targetSdk = 34
versionCode = 11
versionName = "1.0.0+11"
versionCode = 13
versionName = "1.0.0+13"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,24 +140,22 @@ fun VerifierHomeBody(
.padding(bottom = 60.dp)) {

item {
// VerifierListItem(
// title = "Driver's License Document",
// description = "Verifies physical driver's licenses issued by the state of Utopia",
// binary = true,
// fields = 0,
// modifier = Modifier.clickable {
// navController.navigate(Screen.VerifyDLScreen.route)
// }
// )
// VerifierListItem(
// title = "Employment Authorization Document",
// description = "Verifies physical Employment Authorization issued by the state of Utopia",
// binary = true,
// fields = 0,
// modifier = Modifier.clickable {
// navController.navigate(Screen.VerifyEAScreen.route)
// }
// )
VerifierListItem(
title = "Driver's License Document",
description = "Verifies physical driver's licenses issued by the state of Utopia",
type = VerifierListItemTagType.SCAN_QR_CODE,
modifier = Modifier.clickable {
navController.navigate(Screen.VerifyDLScreen.route)
}
)
VerifierListItem(
title = "Employment Authorization Document",
description = "Verifies physical Employment Authorization issued by the state of Utopia",
type = VerifierListItemTagType.SCAN_QR_CODE,
modifier = Modifier.clickable {
navController.navigate(Screen.VerifyEAScreen.route)
}
)
VerifierListItem(
title = "Mobile Driver's Licence",
description = "Verifies an ISO formatted mobile driver's license by reading a QR code",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import androidx.compose.runtime.setValue
import androidx.navigation.NavController
import com.google.accompanist.permissions.ExperimentalPermissionsApi
import com.spruceid.mobile.sdk.rs.verifyVcbQrcodeAgainstMrz
import com.spruceid.mobilesdkexample.LoadingView
import com.spruceid.mobilesdkexample.ScanningComponent
import com.spruceid.mobilesdkexample.ScanningType
import kotlinx.coroutines.GlobalScope
Expand Down Expand Up @@ -69,7 +70,9 @@ fun VerifyEAView(
}

VerifyEASteps.INTERMEDIATE -> {
Loader()
LoadingView(
loadingText = "Verifying..."
)
}

VerifyEASteps.STEP_TWO -> {
Expand Down

0 comments on commit eace8ee

Please sign in to comment.