Fix Autofill dataset icon tint (#1207)

ImageViews in RemoteViews require tint to be specified with the android:
prefix, the lint thinks otherwise.

(cherry picked from commit 02c853c3b1)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Fabian Henneke 2020-11-15 08:40:06 +01:00 committed by Harsh Shandilya
parent da8ca8b46d
commit dcee285613
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 3 additions and 2 deletions

View file

@ -8,6 +8,7 @@ All notable changes to this project will be documented in this file.
- Cancelling the Autofill "Generate password" action now correctly returns you to the original app.
- If multiple username fields exist in the password, we now ensure the later ones are not dropped from extra content.
- Icons in Autofill suggestions are no longer black on almost black in dark mode.
## [1.13.1] - 2020-10-23

View file

@ -4,7 +4,6 @@
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
@ -23,7 +22,8 @@
android:adjustViewBounds="true"
android:maxWidth="20dp"
android:maxHeight="20dp"
app:tint="@color/secondary_color"
android:tint="@color/secondary_color"
tools:ignore="UseAppTint"
tools:src="@mipmap/ic_launcher" />
<LinearLayout