I\'m currently running Realm Version 0.82.0 in one of my Android projects. I didn\'t touch Realm for quite some time, until I recently noticed that they went up until versio
The main upgrade to Realm from 4+ to 5+ needs to change from:
4+
5+
realm.where(example.class) .findAllSorted("field")
To:
realm.where(example.class) .sort("field") .findAll();