Skip to content

Commit 0cad6d5

Browse files
graphics update
graphics update, bump version
1 parent 7cef1c3 commit 0cad6d5

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

wallet/build.gradle

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,16 @@ android {
1616
targetSdkVersion 35
1717
compileSdkVersion 35
1818
ndkVersion "21.3.6528147" //shouldn't matter but gradle complains
19-
versionCode 23001
20-
versionName "v3.0"
21-
ndk {
22-
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64'
19+
versionCode 23002
20+
versionName "v3.1"
21+
}
22+
23+
splits {
24+
abi {
25+
enable true
26+
reset()
27+
include 'arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64'
28+
universalApk false // true only if you need a fat APK for sideloading
2329
}
2430
}
2531

3.53 KB
Loading
7.71 KB
Loading
31.9 KB
Loading
96 KB
Loading

wallet/src/main/res/layout/fragment_account.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99

1010
<android.support.v4.view.ViewPager
1111
android:id="@+id/pager"
12-
android:background="@color/primary_700"
1312
android:layout_width="match_parent"
14-
android:layout_height="match_parent">
13+
android:layout_height="match_parent"
14+
android:background="@color/primary_700">
1515

1616
<!--
1717
This title strip will display the currently visible page title, as well as the page
1818
titles for adjacent pages.
1919
-->
2020
<android.support.v4.view.PagerTabStrip
21+
style="@style/PagerTabStrip"
2122
android:layout_width="match_parent"
2223
android:layout_height="wrap_content"
2324
android:layout_gravity="top"
24-
style="@style/PagerTabStrip"
25-
android:paddingRight="@dimen/activity_horizontal_margin"
2625
android:paddingLeft="@dimen/activity_horizontal_margin"
2726
android:paddingTop="4dp"
27+
android:paddingRight="@dimen/activity_horizontal_margin"
2828
android:paddingBottom="4dp" />
2929

3030
</android.support.v4.view.ViewPager>

wallet/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<string name="trade">Exchange</string>
7171
<string name="receive">Receive</string>
7272
<!-- Welcome fragment -->
73-
<string name="welcome_text">The Verge Android Wallet for TOR</string>
73+
<string name="welcome_text">Verge Android Wallet (orbot required)</string>
7474
<string name="create_wallet">Create a new wallet</string>
7575
<string name="restore_wallet">Restore a wallet</string>
7676
<!-- Intro -->

0 commit comments

Comments
 (0)