0

我在 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 {
4

2 回答 2

4

根据这个问题,如果您使用由 WickeDev 管理的较新版本,Stetho-Realm 可与 Realm 4.0.0+ 一起使用:

repositories {
    mavenCentral()
    maven {
        url 'https://maven.google.com'
    }
    jcenter()
    maven { url 'https://github.com/WickeDev/stetho-realm/raw/master/maven-repo' }
}

dependencies {
    implementation 'com.uphyca:stetho_realm:2.3.0'
}
val realmInspector = RealmInspectorModulesProvider.builder(this)
            .withDeleteIfMigrationNeeded(true)
            .build()

Stetho.initialize(Stetho.newInitializerBuilder(this)
            .enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
            .enableWebKitInspector(realmInspector)
            .build())
于 2018-06-05T13:22:39.320 回答
2

还有另一种手动查看 Realm 数据库记录的方法,但您需要 Mac OS。

1-在模拟器中运行您的应用程序。

2- 转到工具-> Android 设备监视器

3-找到您的应用程序的包名称,现在您可以看到您的应用程序的所有文件。

4-找到领域文件并通过将其导出到您的计算机来复制它。

5- 现在在 MAC OS 上安装Realm Browser 。

6-通过Realm浏览器打开复制的数据库文件。

您可以查看数据库的所有表和记录。

于 2018-06-08T12:21:37.957 回答