我在 Android 手机上有 Realm 数据库。我正在尝试将数据保存到 Realm 数据库,然后从那里获取它。但我不确定我做对了,因为它不包含一些数据。我想查看原始状态的记录,以了解我错在哪里。但是 gradle 未能在此基础上构建项目。有人知道如何使用其他工具查看数据吗?谢谢。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 {