Reputation: 615
I have realm file with size about 700mb. I create compacted version using realm.writeToCopyURL()
, but I get file with the same 700mb. What is it?
Upvotes: 0
Views: 149
Reputation: 2885
In the documentation is never mentioned that that method should compress your file, you only get an encrypted version.
If you want to compress your Realm, you'll have to do it before encrypting it.
Upvotes: 0