This release brings major stability improvements, crash fixes, and a new data observation feature!
🔹 What’s New?
- Fixed:
NoSuchMethodErrorcrash 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! 🎉✨