2016-09-02 128 views
5

我跟着顯示。default.realm文件沒有在Chrome瀏覽器

Debugging with Stetho on Android

我經由終端運行react-native run-android

然後,檢查與Chrome Developer Tools然後Developer Tools

enter image description here

我檢查後,Resources/Web Sql/顯示空的。

我的領域文件位於:path: /data/data/com.demo/files/default.realm

如何在Chrome瀏覽器中查看我的default.realm文件?

+0

更改領域數據庫的名稱: RealmConfiguration realmConfiguration = new RealmConfiguration.Builder() .name(「base.realm」) – Delphian

回答

0

我面臨着同樣的問題,但我通過改變stetho版本'com.facebook.stetho:stetho:1.4.1'解決也將確保您initilise stetho妥善這樣

` Stetho.initialize(
Stetho.newInitializerBuilder(this) 
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this)) 
.enableWebKitInspector(Stetho.defaultInspectorModulesProvider(this)) 
nableWebKitInspector(RealmInspectorModulesProvider.builder(this).build()) 
.build());` 

編碼快樂:)

相關問題