1.3.0
- Update coroutines to 1.3.8 cb9e238
- Add explicit nullability support #7 d9a2fd5
- Limit public API 2d0a49b
There's two (small) breaking changes:
- Now that we support nullability explicitly,
ObjectPreference
doesn't support nullables anymore. If you were taking advantage of that, you can switch toNullableObjectPreference
by callingflowSharedPreferences.getNullableObject()
. - The
Serializer
interface isn't defined withinObjectPreference
anymore, sinceObjectPreference
isinternal
now. Instead, it's a standalone interface with no particular namespace.