Skip to content Skip to sidebar Skip to footer

Style Attribute Attr/@attr/minTextSize Not Found

I have trying since long to identify the issue but unfortunately not able to If I do android.enableAapt2=true The code works fine, but removing the same(Which should compulsoril

Solution 1:

Well, in my case it happened when i upgraded build tools, to resolve this issue, you should have two attr files like in this image:enter image description here

Add these lines in both of attr.xml files:

 <style name="SquareTextView">
         <item name="minTextSize">5dp</item>
    </style>
    <declare-styleable name="SquareTextView"><attr format="dimension" name="minTextSize"/></declare-styleable>

This resolved the issue i was facing. Hope it helps someone.


Solution 2:

The issue is with some of the gradles added in project. Actually the libraries internally have defined the attribute minTextSize

Due to latest updates and compatibility the attr was not found.

To identify I have defined same attr as

<attr name="minTextSize" format="integer">16</attr>

in attrs.xml in my app module. Compiling the same thrown error of duplicate value and path and from that path I have found the library which needs to be updated.

Updating to the latest of all library version have solved the issue.


Solution 3:

If you don't have attrs.xml, then create one. After that add this snippet.

<?xml version="1.0" encoding="utf-8"?> 
<resources>
           <style name="SquareTextView">
               <item name="minTextSize">5dp</item>
           </style>
           <declare-styleable name="SquareTextView">
             <attr format="dimension" name="minTextSize"/>
           </declare-styleable>
 </resources>

Post a Comment for "Style Attribute Attr/@attr/minTextSize Not Found"