mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2025-11-10 23:36:42 +01:00
Fixes app name
This commit is contained in:
@@ -536,7 +536,7 @@ fun authenticate(
|
|||||||
fun keyguardPrompt() {
|
fun keyguardPrompt() {
|
||||||
val intent =
|
val intent =
|
||||||
keyguardManager.createConfirmDeviceCredentialIntent(
|
keyguardManager.createConfirmDeviceCredentialIntent(
|
||||||
stringRes(context, R.string.app_name_release),
|
stringRes(context, R.string.app_name),
|
||||||
title,
|
title,
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -556,7 +556,7 @@ fun authenticate(
|
|||||||
val promptInfo =
|
val promptInfo =
|
||||||
BiometricPrompt.PromptInfo
|
BiometricPrompt.PromptInfo
|
||||||
.Builder()
|
.Builder()
|
||||||
.setTitle(stringRes(context, R.string.app_name_release))
|
.setTitle(stringRes(context, R.string.app_name))
|
||||||
.setSubtitle(title)
|
.setSubtitle(title)
|
||||||
.setAllowedAuthenticators(authenticators)
|
.setAllowedAuthenticators(authenticators)
|
||||||
.build()
|
.build()
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
<string name="app_name_release" translatable="false">Amethyst</string>
|
<string name="app_name" translatable="false">Amethyst</string>
|
||||||
<string name="app_name_debug" translatable="false">Amy Debug</string>
|
<string name="app_name_debug" translatable="false">Amy Debug</string>
|
||||||
<string name="app_name_benchmark" translatable="false">Amy Benchmark</string>
|
<string name="app_name_benchmark" translatable="false">Amy Benchmark</string>
|
||||||
<string name="point_to_the_qr_code">Point to the QR Code</string>
|
<string name="point_to_the_qr_code">Point to the QR Code</string>
|
||||||
|
|||||||
Reference in New Issue
Block a user