mirror of https://github.com/m2049r/xmrwallet.git
Added an application suffix to distinguish between release and debug ver (#177)
* Added an application suffix to distinguish between release and debug ver * Added icon for debug version. * Added icon from mattermost assets channel.
This commit is contained in:
parent
595d88e42e
commit
9b1225fe4b
|
@ -27,6 +27,9 @@ android {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
|
debug {
|
||||||
|
applicationIdSuffix ".debug"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
externalNativeBuild {
|
externalNativeBuild {
|
||||||
cmake {
|
cmake {
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 7.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<string name="app_name" translatable="false">monerujo - Debug</string>
|
||||||
|
</resources>
|
|
@ -333,7 +333,7 @@ public class LoginFragment extends Fragment implements WalletInfoAdapter.OnInter
|
||||||
super.onCreateOptionsMenu(menu, inflater);
|
super.onCreateOptionsMenu(menu, inflater);
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean testnet = false;
|
private boolean testnet = BuildConfig.DEBUG;
|
||||||
|
|
||||||
boolean isTestnet() {
|
boolean isTestnet() {
|
||||||
return testnet;
|
return testnet;
|
||||||
|
|
Loading…
Reference in New Issue