RealmMigrationNeededException во время

У меня есть работающее приложение, в котором используется предыдущая версия области (v0.85.1), я работаю над новым выпуском, в котором используется версия области 4.2.0, а также изменена схема. Изменение схемы — это всего лишь один столбец, добавленный в одну таблицу. Для миграции у меня есть этот класс.

public class ImRealmMigration implements RealmMigration{
    @Override
    public void migrate(DynamicRealm realm, long oldVersion, long newVersion) {

        RealmSchema schema = realm.getSchema();

        if(oldVersion == 0){
            schema.get("Layout")
                    .addField("orientation", String.class, FieldAttribute.REQUIRED);
            oldVersion++;
        }
    }
}

И в классе приложения у меня есть это

 Realm.init(this);
        RealmConfiguration realmConfiguration = new RealmConfiguration.Builder()
                .name("default.realm")
                .schemaVersion(1)
                .migration(new ImRealmMigration())
                .build();
        Realm.setDefaultConfiguration(realmConfiguration); // Make this Realm the default

        Realm realm = Realm.getInstance(realmConfiguration);

Когда я запускаю приложение, оно работает до последней строки, где выдается исключение RealmMigrationNeededException и продолжается перечисление всех первичных ключей в схеме, говорящих, что они стали необязательными. Кто-нибудь знает, почему это происходит и что я могу сделать, чтобы решить эту проблему? Вот трассировка стека:

                FATAL EXCEPTION: main  
                    java.lang.RuntimeException: 
                Unable to start activity io.realm.exceptions.RealmMigrationNeededException: 

        Migration is required due to the following errors:

- Property 'Book.privateId' has been made optional.
                                                                                                       - Property 'BookType.bookTypeId' has been made optional.
                                                                                                       - Property 'Cart.id' has been made optional.
                                                                                                       - Property 'ClipArt.url' has been made optional.
                                                                                                       - Property 'Contact.userId' has been made optional.
                                                                                                       - Property 'CreditAccount.id' has been made optional.
                                                                                                       - Property 'Layout.layoutId' has been made optional.
                                                                                                       - Property 'LayoutClipArtItem.layoutItemId' has been made optional.
                                                                                                       - Property 'LayoutItem.itemId' has been made optional.
                                                                                                       - Property 'LayoutPhotoItem.layoutItemId' has been made optional.
                                                                                                       - Property 'LayoutShapeItem.layoutItemId' has been made optional.
                                                                                                       - Property 'LayoutTextItem.layoutItemId' has been made optional.
                                                                                                       - Property 'OrderSession.id' has been made optional.
                                                                                                       - Property 'PagePhoto.pagePhotoId' has been made optional.
                                                                                                       - Property 'Photo.privateId' has been made optional.
                                                                                                       - Property 'PhotoOrigin.identifier' has been made optional.
                                                                                                       - Property 'PrintPack.privateId' has been made optional.
                                                                                                       - Property 'PrintType.printTypeId' has been made optional.
                                                                                                       - Property 'Product.productId' has been made optional.
                                                                                                       - Property 'ProductFamilyMarketing.productFamilyType' has been made optional.
                                                                                                       - Property 'Region.rid' has been made optional.
                                                                                                           at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3151)
                                                                                                           at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3261)
                                                                                                           at android.app.ActivityThread.access$1000(ActivityThread.java:219)
                                                                                                           at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1735)
                                                                                                           at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                                                           at android.os.Looper.loop(Looper.java:145)
                                                                                                           at android.app.ActivityThread.main(ActivityThread.java:6939)
                                                                                                           at java.lang.reflect.Method.invoke(Native Method)
                                                                                                           at java.lang.reflect.Method.invoke(Method.java:372)
                                                                                                           at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1404)
                                                                                                           at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1199)
                                                                                                        Caused by: io.realm.exceptions.RealmMigrationNeededException: Migration is required due to the following errors:
                                                                                                       - Property 'Book.privateId' has been made optional.
                                                                                                       - Property 'BookType.bookTypeId' has been made optional.
                                                                                                       - Property 'Cart.id' has been made optional.
                                                                                                       - Property 'ClipArt.url' has been made optional.
                                                                                                       - Property 'Contact.userId' has been made optional.
                                                                                                       - Property 'CreditAccount.id' has been made optional.
                                                                                                       - Property 'Layout.layoutId' has been made optional.
                                                                                                       - Property 'LayoutClipArtItem.layoutItemId' has been made optional.
                                                                                                       - Property 'LayoutItem.itemId' has been made optional.
                                                                                                       - Property 'LayoutPhotoItem.layoutItemId' has been made optional.
                                                                                                       - Property 'LayoutShapeItem.layoutItemId' has been made optional.
                                                                                                       - Property 'LayoutTextItem.layoutItemId' has been made optional.
                                                                                                       - Property 'OrderSession.id' has been made optional.
                                                                                                       - Property 'PagePhoto.pagePhotoId' has been made optional.
                                                                                                       - Property 'Photo.privateId' has been made optional.
                                                                                                       - Property 'PhotoOrigin.identifier' has been made optional.
                                                                                                       - Property 'PrintPack.privateId' has been made optional.
                                                                                                       - Property 'PrintType.printTypeId' has been made optional.
                                                                                                       - Property 'Product.productId' has been made optional.
                                                                                                       - Property 'ProductFamilyMarketing.productFamilyType' has been made optional.
                                                                                                       - Property 'Region.rid' has been made optional.
                                                                                                           at io.realm.internal.OsSharedRealm.nativeGetSharedRealm(Native Method)
                                                                                                           at io.realm.internal.OsSharedRealm.<init>(OsSharedRealm.java:172)
                                                                                                           at io.realm.internal.OsSharedRealm.getInstance(OsSharedRealm.java:219)
                                                                                                           at io.realm.BaseRealm.<init>(BaseRealm.java:124)
                                                                                                           at io.realm.BaseRealm.<init>(BaseRealm.java:93)
                                                                                                           at io.realm.Realm.<init>(Realm.java:153)
                                                                                                           at io.realm.Realm.createInstance(Realm.java:424)
                                                                                                           at io.realm.RealmCache.doCreateRealmOrGetFromCache(RealmCache.java:342)
                                                                                                        at io

person Oyebisi    schedule 28.11.2017    source источник


Ответы (1)


0.89.0

Критические изменения

Значение поля @PrimaryKey теперь может быть нулевым для типов String, Byte, Short, Integer и Long. Старые Realms следует перенести с помощью RealmObjectSchema.setNullable() или путем добавления аннотации @Required (#2515).

См. журнал изменений для версии 0.89.0.

Вы можете легко обойти это, добавив @Required в свои @PrimaryKey поля.

person EpicPandaForce    schedule 28.11.2017