summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-12-20 02:13:23 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-12-20 02:13:23 +0100
commit4d275aef7b61e0c67d65246be93321e3e086feda (patch)
treea9535c3aa0f7550b0fa488765b9c0d0ad4b5b215
parentab6effe9e2fb7fab1f310689ca5ae3ae7b7099ca (diff)
downloadwallet-android-4d275aef7b61e0c67d65246be93321e3e086feda.tar.gz
wallet-android-4d275aef7b61e0c67d65246be93321e3e086feda.tar.bz2
wallet-android-4d275aef7b61e0c67d65246be93321e3e086feda.zip
bump version, hide unfinished UI parts
-rw-r--r--app/build.gradle4
-rw-r--r--app/src/main/res/layout/fragment_settings.xml41
2 files changed, 17 insertions, 28 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 1e8d039..8f8e4a7 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -10,8 +10,8 @@ android {
applicationId "net.taler.wallet"
minSdkVersion 21
targetSdkVersion 29
- versionCode 4
- versionName "0.6.0pre5"
+ versionCode 5
+ versionName "0.6.0pre6"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
diff --git a/app/src/main/res/layout/fragment_settings.xml b/app/src/main/res/layout/fragment_settings.xml
index 6873ff4..0dcc721 100644
--- a/app/src/main/res/layout/fragment_settings.xml
+++ b/app/src/main/res/layout/fragment_settings.xml
@@ -11,6 +11,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
+
<TextView
android:id="@+id/editText2"
android:layout_width="match_parent"
@@ -27,44 +28,27 @@
android:orientation="horizontal">
<TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="Android Wallet" />
-
-
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="0.6.0pre4 (Mon 9 Dec 2019, update 1)" />
-
- </LinearLayout>
-
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
-
- <TextView
android:id="@+id/textView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
- android:text="Wallet Backend" />
-
+ android:text="Android Wallet" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
- android:text="0.6.0pre4 (Mon 9 Dec 2019, update 1)" />
+ android:text="0.6.0pre5 (Fri 20 Dec 2019" />
</LinearLayout>
+ <Space
+ android:layout_width="0dp"
+ android:layout_height="15dp" />
+
<TextView
+ android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
@@ -72,33 +56,38 @@
android:textSize="18sp" />
<Button
+ android:visibility="gone"
android:text="Export wallet to file"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button_backup_export"/>
<Button
+ android:visibility="gone"
android:text="Import from file"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button_backup_import"/>
+
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
- android:text="Developer Settings (be careful!)"
+ android:text="Developer Settings (use with caution!)"
android:textSize="18sp" />
+ <!--
<Button
android:text="Withdraw TESTKUDOS"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:id="@+id/button_withdraw_testkudos"/>
+ android:id="@+id/button_withdraw_testkudos"/>-->
<Button
android:text="Reset Wallet (dangerous!)"
android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/button_reset_wallet_dangerously"/>
+
</LinearLayout>
</FrameLayout> \ No newline at end of file