diff --git a/android/core/resources/src/main/res/values/strings.xml b/android/core/resources/src/main/res/values/strings.xml index 2137838e..195eef51 100644 --- a/android/core/resources/src/main/res/values/strings.xml +++ b/android/core/resources/src/main/res/values/strings.xml @@ -46,6 +46,8 @@ 1. Open your Cardano supported web3 wallet app 2. Use this URL to connect your wallet how to connect + https://tools.newm.io/wallet-connect + https://tools.newm.io Next NFT Library Password diff --git a/android/features/barcode-scanner/src/main/java/io/newm/feature/barcode/scanner/BarcodeScannerActivity.kt b/android/features/barcode-scanner/src/main/java/io/newm/feature/barcode/scanner/BarcodeScannerActivity.kt index 91c84662..b6d90eeb 100644 --- a/android/features/barcode-scanner/src/main/java/io/newm/feature/barcode/scanner/BarcodeScannerActivity.kt +++ b/android/features/barcode-scanner/src/main/java/io/newm/feature/barcode/scanner/BarcodeScannerActivity.kt @@ -218,10 +218,10 @@ class BarcodeScannerActivity : ComponentActivity() { @Composable fun CopyToClipboardButton() { val clipboardManager: ClipboardManager = LocalClipboardManager.current - + val connectWalletUrl = stringResource(id = R.string.newm_tools_connect_wallet_url) Button( onClick = { - clipboardManager.setText(androidx.compose.ui.text.AnnotatedString("https://newm.tools/")) + clipboardManager.setText(androidx.compose.ui.text.AnnotatedString(connectWalletUrl)) }, modifier = Modifier .fillMaxWidth() @@ -231,7 +231,7 @@ class BarcodeScannerActivity : ComponentActivity() { colors = ButtonDefaults.buttonColors(backgroundColor = Color.Transparent) ) { Text( - text = "https://newm.tools/", + text = getString(R.string.newm_tools_url), fontFamily = inter, fontWeight = FontWeight.Medium, fontSize = 14.sp, diff --git a/iosApp/Modules/Helpers/SharedUI/XPubScannerView.swift b/iosApp/Modules/Helpers/SharedUI/XPubScannerView.swift index 06a8a083..7ecf973d 100644 --- a/iosApp/Modules/Helpers/SharedUI/XPubScannerView.swift +++ b/iosApp/Modules/Helpers/SharedUI/XPubScannerView.swift @@ -64,7 +64,7 @@ public struct ConnectWalletToAccountScannerView: View { @ViewBuilder private var aimSubtitle: some View { - Text("Go to `https://newm.tools` on your desktop browser to connect your wallet.") + Text("Go to `https://tools.newm.io` on your desktop browser to connect your wallet.") .font(Font.custom("Inter", size: 20)) .multilineTextAlignment(.center) .foregroundColor(Color(red: 0.56, green: 0.56, blue: 0.57))