Skip to content

Commit 2d0af88

Browse files
authored
fix: upgrading xml files (#2243)
1 parent 621cc41 commit 2d0af88

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

app/src/main/res/layout/activity_create_config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
android:layout_marginTop="@dimen/create_config_margin2"
110110
android:text="@string/select_params_title" />
111111

112-
<android.support.v7.widget.RecyclerView
112+
<androidx.recyclerview.widget.RecyclerView
113113
android:id="@+id/params_list_container"
114114
android:layout_width="match_parent"
115115
android:layout_height="wrap_content"

app/src/main/res/layout/activity_data_logger.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
android:gravity="center"
3939
android:text="@string/no_logs_to_display" />
4040

41-
<android.support.v7.widget.RecyclerView
41+
<androidx.recyclerview.widget.RecyclerView
4242
android:id="@+id/recycler_view"
4343
android:layout_width="match_parent"
4444
android:layout_height="match_parent" />

app/src/main/res/layout/activity_main.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22

3-
<androidx.core.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
44
xmlns:app="http://schemas.android.com/apk/res-auto"
55
xmlns:tools="http://schemas.android.com/tools"
66
android:id="@+id/drawer_layout"
@@ -14,7 +14,7 @@
1414
android:layout_width="match_parent"
1515
android:layout_height="match_parent" />
1616

17-
<android.support.design.widget.NavigationView
17+
<com.google.android.material.navigation.NavigationView
1818
android:id="@+id/nav_view"
1919
android:layout_width="wrap_content"
2020
android:layout_height="match_parent"
@@ -23,4 +23,4 @@
2323
app:headerLayout="@layout/nav_header_main"
2424
app:menu="@menu/activity_main_drawer" />
2525

26-
</androidx.core.widget.DrawerLayout>
26+
</androidx.drawerlayout.widget.DrawerLayout>
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2+
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:app="http://schemas.android.com/apk/res-auto"
44
android:layout_width="match_parent"
55
android:layout_height="match_parent"
66
android:fitsSystemWindows="true"
77
android:id="@+id/cl"
88
>
99

10-
<android.support.design.widget.AppBarLayout
10+
<com.google.android.material.appbar.AppBarLayout
1111
android:layout_width="match_parent"
1212
android:layout_height="wrap_content"
1313
android:theme="@style/AppTheme.AppBarOverlay">
1414

15-
<android.support.v7.widget.Toolbar
15+
<androidx.appcompat.widget.Toolbar
1616
android:id="@+id/toolbar"
1717
android:layout_width="match_parent"
1818
android:layout_height="?attr/actionBarSize"
1919
android:background="?attr/colorPrimary"
2020
app:popupTheme="@style/AppTheme.PopupOverlay" />
2121

22-
</android.support.design.widget.AppBarLayout>
22+
</com.google.android.material.appbar.AppBarLayout>
2323

2424
<FrameLayout
2525
android:id="@+id/frame"
2626
android:layout_width="match_parent"
2727
android:layout_height="match_parent"
2828
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
2929

30-
</android.support.design.widget.CoordinatorLayout>
30+
</androidx.coordinatorlayout.widget.CoordinatorLayout>

app/src/main/res/layout/applications_fragment.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
android:orientation="vertical"
66
android:weightSum="1">
77

8-
<android.support.v7.widget.RecyclerView
8+
<androidx.recyclerview.widget.RecyclerView
99
android:id="@+id/applications_recycler_view"
1010
android:layout_width="match_parent"
1111
android:layout_height="wrap_content"

app/src/main/res/layout/fragment_control_main.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
android:focusableInTouchMode="true"
77
android:orientation="vertical">
88

9-
<android.support.v7.widget.RecyclerView
9+
<androidx.recyclerview.widget.RecyclerView
1010
android:id="@+id/control_main_recycler_view"
1111
android:layout_width="match_parent"
1212
android:layout_height="match_parent"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
dependencies {
1111
classpath 'com.android.tools.build:gradle:4.1.3'
12-
classpath "io.realm:realm-gradle-plugin:5.8.0"
12+
classpath "io.realm:realm-gradle-plugin:6.0.2"
1313
classpath "gradle.plugin.com.github.b3er.local.properties:local-properties-plugin:1.1"
1414
// NOTE: Do not place your application dependencies here; they belong
1515
// in the individual module build.gradle files

0 commit comments

Comments
 (0)