JcMinarro / RoundKornerLayouts

Round Korner Layouts is an Android library create to build a layout with the round corners
https://jcminarro.github.io/RoundKornerLayouts/
Apache License 2.0
202 stars 36 forks source link

attr/top_right_corner_radius (aka com.iamk:attr/top_right_corner_radius) not found. #30

Open sureshsamgupta opened 4 years ago

sureshsamgupta commented 4 years ago

-RoundKornerLayouts-0.4.0/res/values/values.xml:6:5-261: AAPT: error: resource attr/top_right_corner_radius (aka com.iamk:attr/top_right_corner_radius) not found.

ashirmehmood1996 commented 4 years ago

I am having the same issue.

spss20 commented 4 years ago

Facing same issue after upgrading gradle version to latest 4.0.0

uzaysan commented 4 years ago

I'm having the same issue

androidovshchik commented 4 years ago

Hi guys, just add this into values/attrs.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr format="dimension" name="top_left_corner_radius"/>
    <attr format="dimension" name="top_right_corner_radius"/>
    <attr format="dimension" name="bottom_right_corner_radius"/>
    <attr format="dimension" name="bottom_left_corner_radius"/>
</resources>
happysingh23828 commented 4 years ago
<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr format="dimension" name="top_left_corner_radius"/>
    <attr format="dimension" name="top_right_corner_radius"/>
    <attr format="dimension" name="bottom_right_corner_radius"/>
    <attr format="dimension" name="bottom_left_corner_radius"/>
</resources>

Thanks, it worked

paswd commented 4 years ago

I see the commit when this bug was fixed. How soon it will be applied in new version?

PrashantShrestha commented 3 years ago

I am having the same issue. If any one has solution or work around then provide.

uzaysan commented 3 years ago

@PrashantShrestha I downloaded previous commit of my project(not the library). Clean gradle build worked fine.