Reputation: 2377
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?
Upvotes: 18
Views: 3209
Reputation: 730
According to Google's Issue Tracker:
Fixed in Studio Dolphin.
It is not possible to back port the fix to Chipmunk.
Android Studio Dolphin is now stable.
Upvotes: 13