In the Manifest editor, in the CreateResource(), if I remove the following line,
<item name="textColorError">@color/design_textinput_error_color_light</item>
then I am able to compile.
CreateResource(values, theme.xml,
<resources>
<style name="MyAppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">#FF9800</item>
<item name="colorPrimaryDark">#F57C00</item>
<item name="colorAccent">#FFA726</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="windowActionModeOverlay">true</item>
<item name="textColorError">@color/design_textinput_error_color_light</item>
</style>
</resources>
)
I don't understand why this difference ?. Is there anything wrong the way that I am doing things ?. This was working fine till I changed to the new version OR till I updated to the GUI SDK manager. Not sure which one broke the existing code.
Also would like to know, what would be the equivalent code for this, so that I can use
<item name="textColorError">@color/design_textinput_error_color_light</item>