I have a Swift application that uses a Realm object server running remotely on a Linux server. Everything works, including real-time synchronization.
Sometimes I want to check the contents of a local Realm file used by an iOS simulator, so I can do some debugging. When I browse here:
~/.../CoreSimulator/.../Documents/realm-object-server/<unique id>/
... and I'm trying to open this file: realm%3A%2F%2F104%2E236%2E129%2E235%3A9080%2F%7E%2Fmyapp.realm
I will be prompted: Enter the correct encryption key for this Realm file.
Where can I get this encryption key? I tried using the admin token from the server, but it doesn't seem to work.
Also, can I turn off encryption everywhere? Or is it mandatory for any application that uses a Realm object server?