Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/local_auth/local_auth_android/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.28

* Removes unused resources as indicated by Android lint warnings.

## 1.0.27

* Fixes compatibility with AGP versions older than 4.2.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ android {
checkAllWarnings true
warningsAsErrors true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency'
baseline file("lint-baseline.xml")
}


Expand Down
246 changes: 0 additions & 246 deletions packages/local_auth/local_auth_android/android/lint-baseline.xml

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,26 +1,30 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="24dp"
android:paddingRight="24dp"
android:gravity="center_vertical"
android:orientation="vertical">
<TextView
android:id="@+id/fingerprint_required"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="24dp"
android:paddingBottom="20dp"
android:gravity="center_vertical"
android:textColor="@color/black_text"
style="@android:style/TextAppearance.DeviceDefault.Medium"
android:textSize="@dimen/huge_text_size"/>
<TextView
android:id="@+id/go_to_setting_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="28dp"
android:textColor="@color/grey_text"
android:textStyle="normal"
android:textSize="@dimen/medium_text_size"/>
android:orientation="vertical"
android:paddingLeft="24dp"
android:paddingRight="24dp">

<TextView
android:id="@+id/fingerprint_required"
style="@android:style/TextAppearance.DeviceDefault.Medium"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:paddingTop="24dp"
android:paddingBottom="20dp"
android:textColor="@color/black_text"
android:textIsSelectable="false"
android:textSize="@dimen/huge_text_size" />

<TextView
android:id="@+id/go_to_setting_description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="28dp"
android:textColor="@color/grey_text"
android:textIsSelectable="false"
android:textSize="@dimen/medium_text_size"
android:textStyle="normal" />
</LinearLayout>
Loading