Skip to content

1.0.4

Latest
Compare
Choose a tag to compare
@skydoves skydoves released this 20 Mar 11:04
· 4 commits to main since this release
11bb6eb

🎉 Released a new version 1.0.4! 🎉

What's New?

  • Added bundleValue for retrieving intent & arguments extra values immediately from Activity and Fragment.
    bundleValue, bundleNonNullValue, bundleArrayValue, bundleArrayListValue.
val id = bundleValue("id", 100L)
val name = bundleValue("name", "")
val poster = bundleValue<Poster>("poster")
  • Now observeBundle emits data only a single time to a single observer. We can observe only once using one observer. And the observer will be unregistered from the LiveData after observing data at once.