🎉 Released a new version 1.0.4! 🎉
What's New?
- Added
bundleValuefor 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
observeBundleemits data only a single time to a single observer. We can observe only once using one observer. And the observer will be unregistered from theLiveDataafter observing data at once.