mirror of https://github.com/m2049r/xmrwallet.git
Merge branch 'm2049r:master' into accessibility-work
This commit is contained in:
commit
6f6eb08fee
|
@ -4,12 +4,12 @@ android {
|
|||
ndkVersion '17.2.4988734'
|
||||
defaultConfig {
|
||||
applicationId "com.m2049r.xmrwallet"
|
||||
buildToolsVersion = '34.0.0'
|
||||
compileSdk 34
|
||||
buildToolsVersion = '35.0.0'
|
||||
compileSdk 35
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 35
|
||||
versionCode 4005
|
||||
versionName "4.0.5 'Sidekick'"
|
||||
versionCode 4006
|
||||
versionName "4.0.6 'Sidekick'"
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
|
|
|
@ -1413,6 +1413,11 @@ public class LoginActivity extends BaseActivity
|
|||
} catch (ClassCastException ex) {
|
||||
// ignore it
|
||||
}
|
||||
if (connectedDeviceName != null) {
|
||||
setSubtitle(getString(R.string.sidekick_connected));
|
||||
} else {
|
||||
setSubtitle(null);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -289,8 +289,7 @@ public class NodeFragment extends Fragment
|
|||
} else if (params[0] == SCAN) {
|
||||
// otherwise scan the network
|
||||
Timber.d("scanning");
|
||||
Set<NodeInfo> seedList = new HashSet<>();
|
||||
seedList.addAll(nodeList);
|
||||
Set<NodeInfo> seedList = new HashSet<>(nodeList);
|
||||
nodeList.clear();
|
||||
Timber.d("seed %d", seedList.size());
|
||||
Dispatcher d = new Dispatcher(info -> publishProgress(info));
|
||||
|
|
|
@ -19,23 +19,26 @@ package com.m2049r.xmrwallet.data;
|
|||
import lombok.AllArgsConstructor;
|
||||
import lombok.Getter;
|
||||
|
||||
// Nodes stolen from https://moneroworld.com/#nodes
|
||||
|
||||
@Getter
|
||||
@AllArgsConstructor
|
||||
public enum DefaultNodes {
|
||||
MONERUJO("nodex.monerujo.io:18081"),
|
||||
XMRTO("node.xmr.to:18081"),
|
||||
SUPPORTXMR("node.supportxmr.com:18081"),
|
||||
HASHVAULT("nodes.hashvault.pro:18081"),
|
||||
MONEROWORLD("node.moneroworld.com:18089"),
|
||||
XMRTW("opennode.xmr-tw.org:18089"),
|
||||
ds_jetzt("monero.ds-jetzt.de:18089"),
|
||||
MONERUJO_ONION("monerujods7mbghwe6cobdr6ujih6c22zu5rl7zshmizz2udf7v7fsad.onion:18081/mainnet/monerujo.onion"),
|
||||
Criminales78("56wl7y2ebhamkkiza4b7il4mrzwtyvpdym7bm2bkg3jrei2je646k3qd.onion:18089/mainnet/Criminales78.onion"),
|
||||
xmrfail("mxcd4577fldb3ppzy7obmmhnu3tf57gbcbd4qhwr2kxyjj2qi3dnbfqd.onion:18081/mainnet/xmrfail.onion"),
|
||||
AGORIST("xmr.agor.ist:18089/mainnet/agor.ist"),
|
||||
BOLDSUCK("xmr-de.boldsuck.org:18080/mainnet/boldsuck.org"),
|
||||
boldsuck("6dsdenp6vjkvqzy4wzsnzn6wixkdzihx3khiumyzieauxuxslmcaeiad.onion:18081/mainnet/boldsuck.onion"),
|
||||
ds_jetzt_onion("qvlr4w7yhnjrdg3txa72jwtpnjn4ezsrivzvocbnvpfbdo342fahhoad.onion:18089/mainnet/ds-jetzt.onion");
|
||||
CAKE("xmr-node.cakewallet.com:18081/mainnet/cakewallet.com"),
|
||||
DS_JETZT("monero.ds-jetzt.de:18089/mainnet/ds-jetzt.de"),
|
||||
ds_jetzt("qvlr4w7yhnjrdg3txa72jwtpnjn4ezsrivzvocbnvpfbdo342fahhoad.onion:18089/mainnet/ds-jetzt.onion"),
|
||||
MONERODEVS("node.monerodevs.org:18089/mainnet/monerodevs.org"),
|
||||
MONERUJO("nodex.monerujo.io:18081/mainnet/monerujo.io"),
|
||||
monerujo("monerujods7mbghwe6cobdr6ujih6c22zu5rl7zshmizz2udf7v7fsad.onion:18081/mainnet/monerujo.onion"),
|
||||
SETH("node.sethforprivacy.com:18089/mainnet/sethforprivacy.com"),
|
||||
seth("sfpp2p7wnfjv3lrvfan4jmmkvhnbsbimpa3cqyuf7nt6zd24xhcqcsyd.onion/mainnet/sethforprivacy.onion"),
|
||||
STACK("monero.stackwallet.com:18081/mainnet/stackwallet.com"),
|
||||
STORMYCLOUD("xmr.stormycloud.org:18089/mainnet/stormycloud.org"),
|
||||
TENZ("monero.10z.com.ar:18089/mainnet/10z.com.ar"),
|
||||
XMRROCKS("node.xmr.rocks:18089/mainnet/xmr.rocks"),
|
||||
xmrrocks("xqnnz2xmlmtpy2p4cm4cphg2elkwu5oob7b7so5v4wwgt44p6vbx5ryd.onion/mainnet/xmr.rocks.onion"),
|
||||
XMRTW("opennode.xmr-tw.org:18089/mainnet/xmr-tw.org");
|
||||
|
||||
@Getter
|
||||
private final String uri;
|
||||
}
|
||||
|
|
|
@ -144,7 +144,7 @@ public class Node {
|
|||
if ((nodeString == null) || nodeString.isEmpty())
|
||||
throw new IllegalArgumentException("daemon is empty");
|
||||
String daemonAddress;
|
||||
String a[] = nodeString.split("@");
|
||||
String[] a = nodeString.split("@");
|
||||
if (a.length == 1) { // no credentials
|
||||
daemonAddress = a[0];
|
||||
username = "";
|
||||
|
@ -169,7 +169,7 @@ public class Node {
|
|||
throw new IllegalArgumentException("Too many '/' or too few");
|
||||
|
||||
daemonAddress = daParts[0];
|
||||
String da[] = daemonAddress.split(":");
|
||||
String[] da = daemonAddress.split(":");
|
||||
if ((da.length > 2) || (da.length < 1))
|
||||
throw new IllegalArgumentException("Too many ':' or too few");
|
||||
String host = da[0];
|
||||
|
|
|
@ -448,6 +448,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -460,4 +463,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -449,6 +449,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -461,4 +464,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -450,6 +450,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -462,4 +465,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -448,6 +448,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -460,4 +463,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -445,6 +445,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -457,4 +460,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -448,6 +448,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -460,4 +463,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -688,6 +688,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -700,4 +703,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -461,6 +461,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -473,4 +476,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -448,6 +448,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -460,4 +463,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -452,6 +452,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -464,4 +467,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -453,6 +453,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -465,4 +468,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -453,6 +453,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -465,4 +468,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -448,6 +448,9 @@
|
|||
|
||||
<string name="label_apply">APPLY</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
|
@ -462,4 +465,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -450,6 +450,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -462,4 +465,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -443,6 +443,9 @@ aqui.</string>
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -455,4 +458,5 @@ aqui.</string>
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -454,6 +454,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -466,4 +469,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -450,6 +450,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -462,4 +465,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -454,6 +454,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -466,4 +469,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -451,6 +451,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -463,4 +466,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -449,6 +449,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -461,4 +464,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -442,6 +442,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -454,4 +457,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -448,6 +448,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -460,4 +463,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -454,6 +454,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -466,4 +469,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -375,6 +375,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -387,4 +390,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -449,6 +449,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
<string name="bluetooth_permissions_settings">App Settings</string>
|
||||
|
@ -461,4 +464,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
|
@ -510,20 +510,9 @@
|
|||
|
||||
<string name="setting_lock">Lock Wallet in Background</string>
|
||||
|
||||
<string name="sidekick_activity_name" translatable="false">Sidekick Wallet</string>
|
||||
<string name="sidekick" translatable="false">monerujo Sidekick Service</string>
|
||||
|
||||
<string name="bt_not_connected" translatable="false">Bluetooth not connected</string>
|
||||
<string name="title_paired_devices" translatable="false">Paired Devices</string>
|
||||
<string name="title_other_devices" translatable="false">Other Devices</string>
|
||||
<string name="button_scan" translatable="false">Scan</string>
|
||||
<string name="none_paired" translatable="false">None paired</string>
|
||||
<string name="none_found" translatable="false">None found</string>
|
||||
<string name="select_device" translatable="false">Select Device</string>
|
||||
<string name="label_bluetooth" translatable="false">Bluetooth</string>
|
||||
<string name="menu_bluetooth" translatable="false">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label" translatable="false">Select Sidekick device</string>
|
||||
<string name="bluetooth_scanning" translatable="false">Scanning for devices</string>
|
||||
<string name="menu_bluetooth">Connect Sidekick</string>
|
||||
<string name="bluetooth_select_label">Select Sidekick device</string>
|
||||
|
||||
<string name="bluetooth_permissions">Bluetooth permissions are required to connect your Sidekick Wallet!</string>
|
||||
<string name="bluetooth_permissions_ok">OK</string>
|
||||
|
@ -537,4 +526,5 @@
|
|||
to turn on flight mode and restart the app with only Bluetooth enabled!</string>
|
||||
<string name="open_wallet_sidekick_missing">Please connect Sidekick device</string>
|
||||
<string name="fab_restore_sidekick">Restore from Sidekick</string>
|
||||
<string name="sidekick_connected">Sidekick Connected</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in New Issue