mirror of https://github.com/m2049r/xmrwallet.git
Docs updated for 0.7 and bugfixes (#55)
* docs and version * wallet failed message moved to UI thread * display balance in pure white
This commit is contained in:
parent
924c3fa260
commit
4918f44048
|
@ -25,8 +25,10 @@ You may lose all your Moneroj if you use this App. Be cautious when spending on
|
|||
- more sensible error dialogs
|
||||
- check licenses of included libraries; License Dialog
|
||||
|
||||
### Issues
|
||||
- Pending incoming transactions disappear after reload (and appear after being mined)
|
||||
### Issues / Pitfalls
|
||||
- Created wallets on a private testnet are unusable because the restore height is set to that
|
||||
of the "real" testnet. After creating a new wallet, make a **new** one by recovering from the seed.
|
||||
The official monero client shows the same behaviour.
|
||||
|
||||
### HOW TO BUILD
|
||||
No need to build. Binaries are included:
|
||||
|
|
|
@ -8,8 +8,8 @@ android {
|
|||
applicationId "com.m2049r.xmrwallet"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 25
|
||||
versionCode 11
|
||||
versionName "0.6"
|
||||
versionCode 12
|
||||
versionName "0.7"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
|
|
|
@ -710,8 +710,6 @@ public class LoginActivity extends AppCompatActivity
|
|||
if (success) {
|
||||
return true;
|
||||
} else {
|
||||
Toast.makeText(LoginActivity.this,
|
||||
getString(R.string.generate_wallet_create_failed), Toast.LENGTH_LONG).show();
|
||||
Log.e(TAG, "Could not create new wallet in " + newWalletFile.getAbsolutePath());
|
||||
return false;
|
||||
}
|
||||
|
@ -723,6 +721,8 @@ public class LoginActivity extends AppCompatActivity
|
|||
if (result) {
|
||||
startDetails(newWalletFile, walletPassword, GenerateReviewFragment.VIEW_TYPE_ACCEPT);
|
||||
} else {
|
||||
Toast.makeText(LoginActivity.this,
|
||||
getString(R.string.generate_wallet_create_failed), Toast.LENGTH_LONG).show();
|
||||
walletGenerateError();
|
||||
}
|
||||
LoginActivity.this.asyncWaitTask = null;
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:text="00000000.000000000000 XMR"
|
||||
android:textColor="@color/tx_green"
|
||||
android:textColor="@color/white"
|
||||
android:textSize="24sp" />
|
||||
|
||||
<TextView
|
||||
|
|
|
@ -18,4 +18,6 @@
|
|||
<color name="colorAccent">#009ADA</color>
|
||||
|
||||
<color name="anotherColor">#F8CC5A</color>
|
||||
|
||||
<color name="white">#ffffff</color>
|
||||
</resources>
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
## What features does it have?
|
||||
|
||||
- Uses monero v0.11.0.0
|
||||
- Support for Android >= 5.0 with ARM processor
|
||||
- Testnet and Mainnet
|
||||
- Generate new wallets
|
||||
|
@ -17,7 +18,7 @@
|
|||
- Only 5 decimal places shown in transactions (full amount in details - click on transaction)
|
||||
- All significant figures shown in balance
|
||||
- QR Code scanning - make sure to *ALWAYS* verify the scanned code is what it is advertised to be!
|
||||
- QR Code for receiving
|
||||
- QR Code for receiving with conversion of XMR to USD/EUR and back through kraken API
|
||||
- Backup wallets to ```.backups``` folder in main wallet folder (old backups are overwritten)
|
||||
- Rename wallets
|
||||
- Archive (=Backup and delete)
|
||||
|
@ -37,11 +38,6 @@ All wallet files (```testnet``` and ```mainnet```) are stored in the main ```Mon
|
|||
So be careful erasing stuff. One of the future releases will split the wallets and move ```testnet```
|
||||
wallets out of there.
|
||||
|
||||
|
||||
## I sent a transaction but it's not in my received transactions list!
|
||||
Don't worry. Received transactions which are not mined yet disappear after the wallet is saved -
|
||||
I blame this on the monero code. Wait for the block to be mined.
|
||||
|
||||
## Do you have any screenshots of what it looks like and how it works?
|
||||
No, but it looks fantastic. Just check it out.
|
||||
|
||||
|
|
Loading…
Reference in New Issue