Skip to content

Version 3.0 - Improved Stability & Real-time Data Observation

Latest

Choose a tag to compare

@jummania jummania released this 21 Mar 16:48
· 79 commits to master since this release

This release brings major stability improvements, crash fixes, and a new data observation feature!

🔹 What’s New?

  • Fixed: NoSuchMethodError crash on Android versions below API 26.
  • Improved: File handling for better compatibility across all devices.
  • Optimized: Performance enhancements for faster data retrieval and storage operations.
  • Added: DataObserver to track data changes in real time! 🎯

🔹 New Feature - Data Observation

Now, you can listen for data changes with the new DataObserver:

dataManager.addDataObserver(new DataObserver() {
    @Override
    public void onDataChange(String key) {
        // Handle data change for the specific key
    }

    @Override
    public void onError(Throwable error) {
        // Handle error if necessary
        System.err.println("Error occurred for key '" + key + "': " + error.getMessage());
    }
});

This ensures you can monitor changes and detect updates in stored data efficiently! 🚀

Full Changelog: 2.8...3.0

Upgrade to v3.0 now for a smoother and more reliable experience! 🎉✨