diff options
author | cyBerta <cyberta@riseup.net> | 2022-07-26 00:16:44 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2022-07-26 01:30:16 +0200 |
commit | 7692e1db1021460ec777928bdf418432cac9e7cb (patch) | |
tree | 350bd0390d32a3758bfda268c5c2957655e0191c /app/src/production/res | |
parent | 2382b154db69a186e5fcf6600e5c4dceb11fb031 (diff) |
prepare viewBinding
Diffstat (limited to 'app/src/production/res')
-rw-r--r-- | app/src/production/res/layout-xlarge/d_new_provider.xml | 5 | ||||
-rw-r--r-- | app/src/production/res/layout/d_new_provider.xml | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/app/src/production/res/layout-xlarge/d_new_provider.xml b/app/src/production/res/layout-xlarge/d_new_provider.xml index 12616625..6e64c8c0 100644 --- a/app/src/production/res/layout-xlarge/d_new_provider.xml +++ b/app/src/production/res/layout-xlarge/d_new_provider.xml @@ -1,9 +1,12 @@ <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" - android:textSize="24sp" > + android:textSize="24sp" + tools:viewBindingIgnore="true" + > <EditText android:id="@+id/new_provider_url" diff --git a/app/src/production/res/layout/d_new_provider.xml b/app/src/production/res/layout/d_new_provider.xml index 36eb0d6a..e58db08a 100644 --- a/app/src/production/res/layout/d_new_provider.xml +++ b/app/src/production/res/layout/d_new_provider.xml @@ -1,8 +1,10 @@ <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:orientation="vertical" > + android:orientation="vertical" + tools:viewBindingIgnore="true"> <EditText android:id="@+id/new_provider_url" |