Skip to content

Commit

Permalink
Fix: Replace androidx legacy widget space with space
Browse files Browse the repository at this point in the history
The legacy [androidx.legacy.widget.Space] can no longer be found in the
project or the libraries, via transitive dependencies or otherwise, and
thus it is being replaced with plain [Space].

------------------------------------------------------------------------

WordPress/src/main/res/layout/zs_activity_request_list_scene_empty.xml
:14: Error: Class referenced in the layout file, androidx.legacy.widget
.Space, was not found in the project or the
libraries [MissingClass]

------------------------------------------------------------------------
  • Loading branch information
ParaskP7 committed Mar 14, 2023
1 parent b239ea6 commit b1fa0b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:gravity="center"
android:orientation="vertical">

<androidx.legacy.widget.Space
<Space
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
Expand Down Expand Up @@ -43,7 +43,7 @@
android:paddingBottom="10dp"
android:text="@string/request_list_empty_start_conversation" />

<androidx.legacy.widget.Space
<Space
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="1" />
Expand Down

0 comments on commit b1fa0b0

Please sign in to comment.