moxy-community / Moxy

Moxy is MVP library for Android with incremental annotation processor and ktx features
MIT License
324 stars 33 forks source link

Support tags in state strategy aliases #132

Closed IlyaGulya closed 6 months ago

IlyaGulya commented 3 years ago

Now Moxy allows to specify tags in state strategy aliases. Example:

@StateStrategyType(AddToEndSingleTagStrategy.class)
@interface AddToEndSingleTag {
    @StateStrategyTypeTag
    String tag() default "";
}

Also, there's new state strategy alias which supports it: @AddToEndSingleTag