Skip to content

2.0.0

Compare
Choose a tag to compare
@maik-mursall maik-mursall released this 07 Oct 14:21
· 534 commits to master since this release

Fixed styleable attributes not being bundled correctly.

Please mind the addition of the xs2a_-prefix to all style attributes.
You can now set the parent of your custom theme to XS2ATheme as well.

Old:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="CustomXS2ATheme">
        <item name="tintColor">#E91E63</item>
        <item name="placeholderColor">#E91E63</item>

New:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="CustomXS2ATheme" parent="XS2ATheme">
        <item name="xs2a_tintColor">#E91E63</item>
        <item name="xs2a_placeholderColor">#E91E63</item>