Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit 359b9d0

Browse files
committed
Fix crash at start
1 parent 8401f52 commit 359b9d0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

wallet/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="de.langerhans.wallet"
55
android:installLocation="internalOnly"
6-
android:versionCode="202"
7-
android:versionName="2.02" >
6+
android:versionCode="203"
7+
android:versionName="2.03" >
88

99
<uses-sdk
1010
android:minSdkVersion="15"

wallet/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<artifactId>wallet</artifactId>
88
<packaging>apk</packaging>
9-
<version>2.02</version>
9+
<version>2.03</version>
1010
<name>Dogecoin Wallet</name>
1111

1212
<parent>

wallet/res/layout/transaction_row_extended.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
android:layout_marginRight="8dp"
118118
android:layout_weight="1" />
119119

120-
<de.schildbach.wallet.ui.CurrencyTextView
120+
<de.langerhans.wallet.ui.CurrencyTextView
121121
android:id="@+id/transaction_row_fiat"
122122
android:layout_width="wrap_content"
123123
android:layout_height="wrap_content"

wallet/src/de/langerhans/wallet/Constants.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public final static class Files
111111
public static final String DEFAULT_EXCHANGE_CURRENCY = "USD";
112112

113113
/** Donation address for tip/donate action. */
114-
public static final String DONATION_ADDRESS = "DHRPHr7JweEwzSP2b239vZh1LQwe7kggSq";
114+
public static final String DONATION_ADDRESS = "D6LjFuMccBfg4QdH3NhyJuzW9gxS6SAuxz";
115115

116116
/** Recipient e-mail address for reports. */
117117
public static final String REPORT_EMAIL = "[email protected]";

0 commit comments

Comments
 (0)