Skip to content

Releases: DanielKnauf/livedata-kit

0.2.0

18 May 03:55
a3fed70
Compare
Choose a tag to compare
  • adds SafeMutableLiveData, which has a null safe getValue to decrease Kotlin warnings
  • adds LiveData<List<T>>.getOrNull(Int):T? to get value from a list inside a LiveData
  • increases target and compile version to 31

0.1.2

14 Oct 05:06
c43a46b
Compare
Choose a tag to compare
  • remove mainthread-annotation from methods which do not check for main thread

0.1.1

10 May 20:01
4b3bd2d
Compare
Choose a tag to compare
  • fixes distribution via Jitpack.io, somehow an old artefact was still distributed

0.1.0

27 Apr 05:02
5f92267
Compare
Choose a tag to compare
  • MergerLiveData subscribes to one or more LiveData of any type and merges their values
  • DistinctLiveData checks new values with equals and emits only different values to observers
  • MutableLiveData-ktx provides List functions directly on a MutableLiveData<List>