在 watchOS 2 扩展中创建的领域浏览器中打开领域文件
Opening a Realm file in Realm Browser that was created in a watchOS 2 extension
我在 watchOS 2 扩展中使用 Realm。一切都按预期工作,但我无法在领域浏览器中打开 Watch Simulator default.ream
文件。当我在模拟器仍处于 运行ning 状态时尝试打开它时,出现以下错误:
Realm file is currently open in another process which cannot share
access with this process. All processes sharing a single file must be
the same architecture. For sharing files between the Realm Browser and
an iOS Simulator, this means that you must use a 64-bit simulator.
当我在模拟器未 运行ning 时尝试打开领域文件时,出现以下错误:
Invalid database
是否有人在 Realm Browser 中成功打开了在 watchOS 2 扩展中创建的领域文件?
编辑:
我已经更新到最新版本的 Realm 浏览器(版本 0.95.2 (8))并且我正在通过 CocoaPods 使用这些版本的 Realm:
pod 'Realm', '0.96.0-beta2'
pod 'RealmSwift', '0.96.0-beta2'
我有两个领域文件。一个是在 iPhone App 中创建的,另一个是在 watchOS 2 扩展中创建的。当我 运行 模拟器中的应用程序和扩展程序时,我可以毫无问题地打开 iPhone Realm 文件,但是当我尝试打开 watch 扩展程序文件时,我现在收到此错误消息:
'default' could not be opened. It may be encrypted, or it isn't in a
compatible file format.
我没有在我的领域配置中设置加密密钥。
使用 0.96.0 的测试版之一时,您需要自己编译浏览器 from the beta branch。
我在 watchOS 2 扩展中使用 Realm。一切都按预期工作,但我无法在领域浏览器中打开 Watch Simulator default.ream
文件。当我在模拟器仍处于 运行ning 状态时尝试打开它时,出现以下错误:
Realm file is currently open in another process which cannot share access with this process. All processes sharing a single file must be the same architecture. For sharing files between the Realm Browser and an iOS Simulator, this means that you must use a 64-bit simulator.
当我在模拟器未 运行ning 时尝试打开领域文件时,出现以下错误:
Invalid database
是否有人在 Realm Browser 中成功打开了在 watchOS 2 扩展中创建的领域文件?
编辑: 我已经更新到最新版本的 Realm 浏览器(版本 0.95.2 (8))并且我正在通过 CocoaPods 使用这些版本的 Realm:
pod 'Realm', '0.96.0-beta2'
pod 'RealmSwift', '0.96.0-beta2'
我有两个领域文件。一个是在 iPhone App 中创建的,另一个是在 watchOS 2 扩展中创建的。当我 运行 模拟器中的应用程序和扩展程序时,我可以毫无问题地打开 iPhone Realm 文件,但是当我尝试打开 watch 扩展程序文件时,我现在收到此错误消息:
'default' could not be opened. It may be encrypted, or it isn't in a compatible file format.
我没有在我的领域配置中设置加密密钥。
使用 0.96.0 的测试版之一时,您需要自己编译浏览器 from the beta branch。