You can use Stheto from FaceBook. You can see dynamic changes and the whole table, etc. Here is the link: https://github.com/uPhyca/stetho-realm
I will explain here: import lib from gradle with
> compile 'com.facebook.stetho:stetho:1.5.0'
> compile 'com.uphyca:stetho_realm:2.1.0'
then in the extends Application class (don't forget to notify the manifest about your class:
<application
android:allowBackup="true"
tools:ignore="AllowBackup"
android:name=".YourClassName"
then add this
public class YourClassName extends Application {
...
@Override
public void onCreate() {
Stetho.initialize(
Stetho.newInitializerBuilder(this)
.enableDumpapp(Stetho.defaultDumperPluginsProvider(this))
.enableWebKitInspector(RealmInspectorModulesProvider.builder(this).build())
.build());
finnaly open chrome at this url
chrome://inspect/
And click on check. Go to Ressources, then to Web Sql. You can see your db this way

source
share