magazmj / android-unused-resources

Automatically exported from code.google.com/p/android-unused-resources
0 stars 0 forks source link

Dot character in resource name is not processed #19

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
The following fragment is from Financisto's (personal budget tracker) 
styles.xml:

    <style name="TextAppearance.PositiveAmount">
        <item name="android:textColor">#39b54a</item>
    </style>

It's reported as being unused:

style     : TextAppearance_PositiveAmount
    ..\res\values\styles.xml

However, it is used in the code as: R.style.TextAppearance_PositiveAmount

So, probably, need to deal with dot-to-underscore conversion.

Original issue reported on code.google.com by estee...@gmail.com on 15 May 2012 at 10:45