Ticherhaz FreePalestine
Ticherhaz FreePalestine

Reputation: 2377

Android SDK API 33 - Unknown attribute android:textAllCaps

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

enter image description here

This is for SDK Tools

enter image description here

Here is the TextView

enter image description here

<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

enter image description here

Question

How to fix this unknown attribute?

Upvotes: 18

Views: 3209

Answers (1)

steffandroid
steffandroid

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

Related Questions