Upgrade realm in an Android project

前端 未结 2 1325
忘掉有多难
忘掉有多难 2020-11-28 00:04

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

2条回答
  •  一整个雨季
    2020-11-28 00:14

    The main upgrade to Realm from 4+ to 5+ needs to change from:

    realm.where(example.class)
        .findAllSorted("field")
    

    To:

    realm.where(example.class)
        .sort("field")
        .findAll();
    

提交回复
热议问题