updating commons to 5.29.7

This commit is contained in:
tibbi 2020-06-12 22:02:18 +02:00
parent 54fb9c4c35
commit f166a552e6
3 changed files with 8 additions and 11 deletions

View file

@ -7,7 +7,7 @@ buildscript {
propMinSdkVersion = 21
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.29.6'
propVersionName = '5.29.7'
kotlin_version = '1.3.72'
}

View file

@ -1,15 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners
android:bottomLeftRadius="@dimen/normal_margin"
android:topLeftRadius="@dimen/normal_margin"/>
android:topLeftRadius="@dimen/normal_margin" />
<solid android:color="@color/color_primary"/>
<solid android:color="@color/color_primary" />
<size
android:width="@dimen/fastscroll_width"
android:height="@dimen/fastscroll_height"/>
android:height="@dimen/fastscroll_height" />
</shape>

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<ImageView
@ -9,14 +8,13 @@
android:layout_height="wrap_content"
android:layout_gravity="end"
android:alpha="0"
android:background="@drawable/fastscroller_handle_vertical"/>
android:background="@drawable/fastscroller_handle_vertical" />
<TextView
android:id="@+id/fastscroller_bubble"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/bigger_margin"
android:layout_marginRight="@dimen/bigger_margin"
android:alpha="0"
android:background="@drawable/fastscroller_bubble"
android:ellipsize="end"
@ -24,6 +22,6 @@
android:padding="@dimen/medium_margin"
android:singleLine="true"
android:textSize="@dimen/normal_text_size"
tools:text="bubble"/>
tools:text="bubble" />
</merge>