Using Stetho and Stetho Realm.
Stetho.initialize( Stetho.newInitializerBuilder(this) .enableDumpapp(Stetho.defaultDumperPluginsProvider(this)) .enableWebKitInspector(RealmInspectorModulesProvider.builder(this).build()) .build());
I can see the contents of Realm DB using the Google Developer Console, but the maximum index is 249, after which all values ββare truncated -

How can I make it show all values?
source share