Migrate away from temporary androidx.design_design target.

androidx.design_design was a target created temporarily while
the com.google.android.material_material was being added.
This migrated to the final material design class packages.

Exempt-From-Owner-Approval: Large scale refactor
Test: make -j Contacts
Change-Id: I143a201fd56c331cf0f13ffc9c23b2e59107ad1c
diff --git a/res/layout/group_name_edit_dialog.xml b/res/layout/group_name_edit_dialog.xml
index 333ac43..9c33a22 100644
--- a/res/layout/group_name_edit_dialog.xml
+++ b/res/layout/group_name_edit_dialog.xml
@@ -14,7 +14,7 @@
      limitations under the License.
 -->
 
-<android.support.design.widget.TextInputLayout
+<com.google.android.material.textfield.TextInputLayout
     xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     android:id="@+id/text_input_layout"
@@ -30,7 +30,7 @@
     <!-- In Android P there is no initial focus by default in touch mode. See b/77244371 -->
     <requestFocus />
 
-    <android.support.design.widget.TextInputEditText
+    <com.google.android.material.textfield.TextInputEditText
         android:id="@android:id/text1"
         android:layout_width="match_parent"
         android:layout_height="wrap_content"
@@ -42,4 +42,4 @@
         android:minHeight="@dimen/dialog_edit_text_min_height"
         android:textAlignment="viewStart"
         android:singleLine="true"/>
-</android.support.design.widget.TextInputLayout>
+</com.google.android.material.textfield.TextInputLayout>