Search code examples
androidrealmrealm-mobile-platformrealm-database

Is realm database have a storage limit for mobile application?


I am creating an android application and its also working offline mode for offline storage i used Realm Database.

What i want to do

first i want check the database size before insert any data is realm provide facility/code for checking database size/limit ?


Solution

  • There is no limit on storing data but as Mobile devices are memory sensitive so we should not save much data.

    Although there is no limit on storing data by realm but there is limit in saving single String or byte[] of max 16MB (AFIK).

    first i want check the database size before insert any data is realm provide facility/code for checking database size/limit ?

    You just have to check device memory if you want a check.