Releases: livefront/bridge
Releases · livefront/bridge
2.0.2
- Ensured that malformed or incomplete data saved to disk does not result in an exception when attempting to restore state.
2.0.1
- Improved thread-safety to avoid rare NullPointerException.
2.0.0
Bridge
now depends on AndroidX rather than the support libraries.
1.3.1
- Prevented CancellationException that might result due to a rare race condition on startup.
1.3.0
- Reduced memory usage when processing data by skipping Base64-encoding step and using custom file storage.
- Improved performance when processing Bitmap objects by avoiding compression.
1.2.1
- Fixed bug preventing data from being properly cleared internally during configuration changes.
- Fixed bug resulting in non-launcher intents (such as deep links) sometimes unnecessarily clearing saved data.
1.2.0
Bridge
can now save the state of View
objects. You may now optionally provide a ViewSavedStateHandler
to Bridge.initialize
in order to unlock this functionality.
- Improved performance during configuration changes and when navigating while apps are in the foreground.
1.1.3
Bridge.clear
is now safe to call in Activity.onDestroy
when "Don't Keep Activities" is enabled.
- All data is now correctly cleared on fresh launches for apps that do not use
Bridge
in every Activity
.
- Min SDK is now 14.
1.1.2
Data will no longer be automatically cleared for objects that go out of memory while an app is running. It is now more strongly recommended to use the clear
method to manually delete data for objects in the process of being discarded.
1.1.1
- Fixed
clear
behavior for a removed Fragment
in the backstack.