Stetho Realm 用于 Stetho 的 Realm 模块 项目简介
一个用于Stetho的Realm模块:可以通过Stetho,在Chrome浏览器上查看Realm数据库。使用方法:1. 在您的build.gradle文件中添加:repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.facebook.stetho:stetho:1.5.0'
compile 'com.github.xizzhu:stetho-realm:0.1.3'
}2. 在您的Application文件中添加:public final class App extends Application {
@Override
public void onCreate() {
super.onCreate();
Realm.init(this);
final StethoRealmInspectorModulesProvider inspectorModulesProvider =
new StethoRealmInspectorModulesProvider.Builder(this)
.dirs(new File(...))
.namePattern(".+\\.realm")
.encryptionKey("encrypted.realm", new byte[] {...})
.build();
Stetho.initialize(Stetho.newInitializerBuilder(this)
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
.enableWebKitInspector(inspectorModulesProvider)
.build());
}
} 现在,您就可以通过Stetho,在Chrome中查看Realm数据库咯!
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.facebook.stetho:stetho:1.5.0'
compile 'com.github.xizzhu:stetho-realm:0.1.3'
}2. 在您的Application文件中添加:public final class App extends Application {
@Override
public void onCreate() {
super.onCreate();
Realm.init(this);
final StethoRealmInspectorModulesProvider inspectorModulesProvider =
new StethoRealmInspectorModulesProvider.Builder(this)
.dirs(new File(...))
.namePattern(".+\\.realm")
.encryptionKey("encrypted.realm", new byte[] {...})
.build();
Stetho.initialize(Stetho.newInitializerBuilder(this)
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
.enableWebKitInspector(inspectorModulesProvider)
.build());
}
} 现在,您就可以通过Stetho,在Chrome中查看Realm数据库咯!