mirror of
https://github.com/m2049r/xmrwallet
synced 2025-09-15 01:10:50 +02:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
dceca0e198 | ||
![]() |
94947de9ef | ||
![]() |
10ea6d8e0c |
@@ -8,8 +8,8 @@ android {
|
|||||||
applicationId "com.m2049r.xmrwallet"
|
applicationId "com.m2049r.xmrwallet"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 25
|
targetSdkVersion 25
|
||||||
versionCode 19
|
versionCode 20
|
||||||
versionName "0.8.0.6"
|
versionName "0.8.0.7"
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
cmake {
|
cmake {
|
||||||
|
@@ -186,7 +186,7 @@ public class LoginFragment extends Fragment {
|
|||||||
etDaemonAddress.setOnFocusChangeListener(new View.OnFocusChangeListener() {
|
etDaemonAddress.setOnFocusChangeListener(new View.OnFocusChangeListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onFocusChange(View v, boolean hasFocus) {
|
public void onFocusChange(View v, boolean hasFocus) {
|
||||||
if (hasFocus && !getActivity().isFinishing()) {
|
if (hasFocus && !getActivity().isFinishing() && etDaemonAddress.isLaidOut()) {
|
||||||
etDaemonAddress.showDropDown();
|
etDaemonAddress.showDropDown();
|
||||||
Helper.showKeyboard(getActivity());
|
Helper.showKeyboard(getActivity());
|
||||||
}
|
}
|
||||||
@@ -376,7 +376,7 @@ public class LoginFragment extends Fragment {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String getDaemon() {
|
String getDaemon() {
|
||||||
return etDaemonAddress.getText().toString();
|
return etDaemonAddress.getText().toString().trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
void setDaemon(NodeList nodeList) {
|
void setDaemon(NodeList nodeList) {
|
||||||
|
@@ -27,6 +27,11 @@
|
|||||||
- Archive (=Backup and delete)
|
- Archive (=Backup and delete)
|
||||||
- 3 Default nodes + History of last 5 used nodes
|
- 3 Default nodes + History of last 5 used nodes
|
||||||
|
|
||||||
|
## After installing from Google Play the wallet list is empty!
|
||||||
|
Sorry about that. The folder for the wallets was renamed from "Monerujo" to "monerujo".
|
||||||
|
On most devices this does not matter (they don't care about upper/lower case). Yours does.
|
||||||
|
If you use a file explorer (e.g. es file explorer) you can find the Monerujo folder and rename it to "monerujo".
|
||||||
|
|
||||||
## I cannot select and copy the mnemonic seed
|
## I cannot select and copy the mnemonic seed
|
||||||
Copying anything to the clipboard on Android exposes it to any other App running. So this
|
Copying anything to the clipboard on Android exposes it to any other App running. So this
|
||||||
is a security measure to keep your seed safe(r).
|
is a security measure to keep your seed safe(r).
|
||||||
|
Reference in New Issue
Block a user