Recently I updated my project with new SDK which is Android API 33. I checked that the attr for textAllCaps is an Unknown attribute android:textAllCaps.
This is Android Studio Settings
This is for SDK Tools
Here is the TextView
<TextView
android:id="@+id/tv_paid"
android:layout_width="wrap_content"
android:textAllCaps="false"
android:layout_height="wrap_content"
android:text="@string/paid"
app:layout_constraintBottom_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
Here is the attrs.xml file with the file location
Question
How to fix this unknown attribute?



