Attributes prefixed by "android" work fine, but how do I add the ones prefixed by something else?
For example, how can I add the following two attributes to the style bellow?
app:chipCornerRadius="20dp"
app:textStartPadding="8dp"
<style name="Chip" parent="Base.TextAppearance.AppCompat.Small">
<item name="android:textSize">@dimen/smallTextSize</item>
<item name="android:textColor">@color/black</item>
</style>