Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio Error :114:25: AAPT: error: resource android:attr/lStar not found

Here is the error that I am facing while using chaquopy with android studio

Whenever I try to build apk, then it opens values.xml and points to a line

Error is on line 105 :

<declare-styleable name="ColorStateListItem">
    <!-- Base color for this state. -->
    <attr name="android:color"/>
    <!-- Alpha multiplier applied to the base color. -->
    <attr format="float" name="alpha"/>
    <attr name="android:alpha"/>
    <!-- Perceptual luminance applied to the base color. From 0 to 100. -->
    <attr format="float" name="lStar"/>
    <attr name="android:lStar"/>
</declare-styleable>

I am not able to post full values.xml file because of words limit. comment down if you need full file.

Please help me out.

like image 826
Prachi Kakkad Avatar asked Sep 02 '25 06:09

Prachi Kakkad


1 Answers

uninstall your old version of android studio

install the latest version from android studio site

https://developer.android.com/studio

it worked for me :-)

like image 53
Shadab ahmed Avatar answered Sep 04 '25 20:09

Shadab ahmed