Livefront Bridge Versions Save

An Android library for avoiding TransactionTooLargeException during state saving and restoration

v2.0.2

3 years ago
  • Ensured that malformed or incomplete data saved to disk does not result in an exception when attempting to restore state.

v2.0.1

3 years ago
  • Improved thread-safety to avoid rare NullPointerException.

v2.0.0

3 years ago
  • Bridge now depends on AndroidX rather than the support libraries.

v1.3.1

3 years ago
  • Prevented CancellationException that might result due to a rare race condition on startup.

v1.3.0

3 years ago
  • 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.

v1.2.1

4 years ago
  • 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.

v1.2.0

5 years ago
  • 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.

v1.1.3

5 years ago
  • 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.

v1.1.2

5 years ago

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.

v1.1.1

6 years ago
  • Fixed clear behavior for a removed Fragment in the backstack.