在将realm的版本从0.82.1更改为0.87.5之后,我得到了这个错误。

FATAL EXCEPTION: main Process: com.xxxxx.consumer, PID: 8633
java.lang.RuntimeException: Unable to create applicationcom.gemba.consumer.realm.AppInstance:
java.lang.IllegalArgumentException: Configurations cannot be different if used to open the same file.
Cached configuration:
                                                              realmFolder: /data/user/0/com.xxxx.consumer/files
                                                              realmFileName : default.realm
                                                              canonicalPath: /data/data/com.xxxx.consumer/files/default.realm
                                                              key: [length: 0]
                                                              schemaVersion: 0
                                                              migration: null
                                                              deleteRealmIfMigrationNeeded: true
                                                              durability: FULL
                                                              schemaMediator: io.realm.DefaultRealmModuleMediator@b40b99c9

我的领域管理类是
公共final类realmanager{
public static RealmManager realmManager;
public static RealmConfiguration realmConfig;
public static Realm realm;
public static WorkerThread workerThread;
public static Context appContext;

public static RealmManager getInstance(Context context) {

    if (realmManager == null) {
        realmManager = new RealmManager();

        getRealmConfig(context);
        realm = Realm.getInstance(realmConfig);
        workerThread = new WorkerThread(context);
        appContext = context;
    }

    return realmManager;
}

public static RealmConfiguration getRealmConfig(Context context) {
    if (realmConfig == null) {
        realmConfig = new RealmConfiguration.Builder(context)
                .deleteRealmIfMigrationNeeded()
                .build();

    }
    return realmConfig;

}

我在应用程序类中这样使用它。
RealmManager.getInstance(getApplicationContext());

最佳答案

每个Realm实例都是基于RealmConfiguration创建的。
当对指向已在另一个getInstance()上打开的领域文件(相同的文件路径)的RealmConfiguration调用时,新配置必须与旧配置相同。
RealmConfiugration的实现如下所示。

public static Realm getInstance(Context context) {
    return Realm.getInstance(new RealmConfiguration.Builder(context)
            .name(DEFAULT_REALM_NAME)
            .build());
}

当你打电话
RealmManager.getInstance(getApplicationContext());

它隐式地在应用程序的files dir中创建了getInstance(Context context),默认领域名为“default.realm”。它与您在RealmConfiguration--nogetRealmConfig中创建的不同。
要解决这个问题,只需使用deleteRealmIfMigrationNeeded()everywhere返回的相同配置。顺便说一下,您的getRealmConfig不是线程安全的,如果在不同的线程中调用它,您可能需要修复它。
getRealmConfig()在领域0.88.0中被弃用。

10-04 19:42