CoEpi/app-android/app/src/main/res/layout/card_onboarding_small.xml:19: Error: This view is not constrained vertically: at runtime it will jump to the top unless you add a vertical constraint [MissingConstraints]
<ImageView
Added ignore directive to the ImageVIew element as temp workaround:
<ImageView android:id="@+id/image" android:layout_width="0dp" android:layout_height="wrap_content" android:src="@{viewData.image}" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" tools:src="@drawable/ic_intro_1" tools:ignore="MissingConstraints" />
Added ignore directive to the ImageVIew element as temp workaround:
<ImageView android:id="@+id/image" android:layout_width="0dp" android:layout_height="wrap_content" android:src="@{viewData.image}" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" tools:src="@drawable/ic_intro_1" tools:ignore="MissingConstraints" />