Can't override textAllCaps for buttons on style under android 21
This is how I set my buttons. <Button android:id="@+id/button_login" style="@style/ButtonStyle" android:text="@string/button_login" /> This is my style on values folder. <style name="ButtonStyle" parent="ButtonStyleBase" /> <style name="ButtonStyleBase"> <item name="android:layout_width">match_parent</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_marginTop">@dimen/padding</item> <item name="android:textSize">@dimen/font_regular</item> <item name="android:textColor">@color/text_regular</item> <item name="android:background">@drawable/shape_clickable<