我们在开发中,数据库模式更改经常发生.由于我们还没有生活,所以不需要迁移.为此,我将Realm配置如下:
RealmConfiguration config = new RealmConfiguration.Builder(context)
.name("jt.realm")
.schemaVersion(1)
.deleteRealmIfMigrationNeeded() // todo remove for production
.build();
Realm.setDefaultConfiguration(config);
但是,更改架构时,将引发异常:必须提供RealmMigration
我从文档中了解到,由于配置中存在deleteRealmIfMigrationNeeded(),因此Realm应该自动删除数据库,但这似乎没有发生.为什么会这样呢?
Android Studio依赖性
编译’io.realm:realm-android:0.86.1′
解决方法:
我们有一个类似的问题.我们通过添加解决了这个问题
Realm.getInstance(config)
之后
Realm.setDefaultConfiguration(config);
我们认为将在首次调用Realm后进行配置.这次我们不使用任何Realm对象,因此也不例外.