uPhyca / stetho-realm

Realm module for Stetho
Other
738 stars 114 forks source link

Is it possible to display SqlLite content along with Realm? #63

Open piotrek-chmielowski opened 7 years ago

piotrek-chmielowski commented 7 years ago

In my project, I'm using both Realm and Sqllite. To display Realm's content I have to use:

Stetho.
    Stetho.newInitializerBuilder(this)
        .enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
        .enableWebKitInspector(RealmInspectorModulesProvider.builder(this).build())
        .build());

Hovewer, to display SqlLite content, I have to replace it with:

Stetho.initializeWithDefaults(this);

Is it possible to inspect data from both engines at the same time?

vson1718 commented 5 years ago

stetho-realm2.3.0支持realm5.11.0吗?