I have Realm database on Android phone. And I am trying to save data to Realm database and then to fetch it from there. But I am not sure that I am doing it rightly, because it does not contain some data. I want to see that records in their raw state to understand where am I wrong. But gradle failing to build project on this. Does anybody know how to see with data with some other tools? Thanks. gradle-4.4.1
io.realm:realm-gradle-plugin:5.1.0
implementation 'com.facebook.stetho:stetho:1.5.0'
implementation 'com.uphyca:stetho_realm:2.2.0'
Stetho.initialize(
Stetho.newInitializerBuilder(this)
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
.enableWebKitInspector(Stetho.defaultInspectorModulesProvider(this))
//.enableWebKitInspector(RealmInspectorModulesProvider.builder(this).build())
.build());
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com'
}
maven { url 'https://github.com/WickeDev/stetho-realm/raw/master/maven-repo' }
}
}
apply plugin: 'com.android.application' //here shows error: Failed to resolve: com
apply plugin: 'io.fabric'
android {