This repository has been archived by the owner on Mar 30, 2020. It is now read-only.
Releases: ZacSweers/barber
Releases · ZacSweers/barber
1.3.1
1.3.0
This release adds support for specifying default values in @StyledAttr
annotations. They must point to a resource ID, and abide by the same conventions for type resolution as before regarding Kind
.
@StyledAttr(value = R.styleable.BarberView_animated, defaultValue = R.bool.animated_default)
public boolean isAnimated;
1.2.1
1.2.0
AndroidAttrs and Travis CI
This adds support for retrieving Android attribute values.
@AndroidAttr("textAllCaps")
public boolean textAllCaps;
Like StyledAttr
, the default behavior is to return the type of the field/param. These are also subject to the same approach as @StyledAttr
regarding special return types. See the AttrSetKind enum for a full list of supported types.
@AndroidAttr(value = "textColor", kind = AttrSetKind.RESOURCE)
public int textColor;
1.1.1
1.1.0
1.0.1: Lower minSdkVersion to 14
This lowers the minSdk version to 14
Initial Release
1.0.0 General cleanup and fix test for pre-lollipop devices