Commit 07d3c01c authored by Jignesh Patel's avatar Jignesh Patel Committed by GitHub

Realm Stetho - Increase table view data limit

As there was limited view of table while debugging realm database
https://github.com/uPhyca/stetho-realm/issues/2
parent b055ccb7
...@@ -30,7 +30,7 @@ public class RocketChatApplicationDebug extends RocketChatApplication { ...@@ -30,7 +30,7 @@ public class RocketChatApplicationDebug extends RocketChatApplication {
private void enableStetho() { private void enableStetho() {
Stetho.initialize(Stetho.newInitializerBuilder(this) Stetho.initialize(Stetho.newInitializerBuilder(this)
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this)) .enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
.enableWebKitInspector(RealmInspectorModulesProvider.builder(this).build()) .enableWebKitInspector(RealmInspectorModulesProvider.builder(this).withLimit(Long.MAX_VALUE).build())
.build()); .build());
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment