// TODO(zhuinden): move this into its own artifact later: `groupiex` (or rather, `groupie-ktx`)
With groupie-kotlin-android-extensions now deprecated, I've taken to removing it as a dependency in my projects. The module also includes the extension functions for plusAssign/minusAssign, which aren't deprecated, and I'd like to continue using.
This PR moves these extensions to a new module, groupie-ktx, so they can be depended upon without including the synthetics stuff. The existing groupie-kotlin-android-extensions now depends on this new groupie-ktx, to avoid duplicating code between the two.
Implements the following todo:
With
groupie-kotlin-android-extensions
now deprecated, I've taken to removing it as a dependency in my projects. The module also includes the extension functions forplusAssign
/minusAssign
, which aren't deprecated, and I'd like to continue using.This PR moves these extensions to a new module,
groupie-ktx
, so they can be depended upon without including the synthetics stuff. The existinggroupie-kotlin-android-extensions
now depends on this newgroupie-ktx
, to avoid duplicating code between the two.