mirror of
https://github.com/m2049r/xmrwallet
synced 2025-09-04 17:28:42 +02:00
Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
dceca0e198 | ||
![]() |
94947de9ef | ||
![]() |
10ea6d8e0c | ||
![]() |
0d03b75785 |
@@ -8,8 +8,8 @@ android {
|
|||||||
applicationId "com.m2049r.xmrwallet"
|
applicationId "com.m2049r.xmrwallet"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 25
|
targetSdkVersion 25
|
||||||
versionCode 18
|
versionCode 20
|
||||||
versionName "0.8.0.5"
|
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) {
|
||||||
|
@@ -144,7 +144,7 @@ public class LicensesFragment extends DialogFragment {
|
|||||||
mWebView = (WebView) content.findViewById(R.id.licensesFragmentWebView);
|
mWebView = (WebView) content.findViewById(R.id.licensesFragmentWebView);
|
||||||
mIndeterminateProgress = (ProgressBar) content.findViewById(R.id.licensesFragmentIndeterminateProgress);
|
mIndeterminateProgress = (ProgressBar) content.findViewById(R.id.licensesFragmentIndeterminateProgress);
|
||||||
|
|
||||||
boolean showCloseButton = false;
|
boolean showCloseButton = true;
|
||||||
Bundle arguments = getArguments();
|
Bundle arguments = getArguments();
|
||||||
if (arguments != null) {
|
if (arguments != null) {
|
||||||
showCloseButton = arguments.getBoolean(KEY_SHOW_CLOSE_BUTTON);
|
showCloseButton = arguments.getBoolean(KEY_SHOW_CLOSE_BUTTON);
|
||||||
|
File diff suppressed because one or more lines are too long
@@ -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