Since serialize/deserialize adapter wasn't created for Encrypted Payload (it is commented out in MoshiPayloadAdapter line 226), we were having issues while working with encrypted payloads.
Also library forces us to use Moshi which we don't use in our project. That's why I've created GsonPayloadAdapter but we still need Moshi for FileWCSessionStore. I am planning to create another WCSessionStore that uses gson soon.
Since serialize/deserialize adapter wasn't created for Encrypted Payload (it is commented out in
MoshiPayloadAdapter
line 226), we were having issues while working with encrypted payloads.Also library forces us to use
Moshi
which we don't use in our project. That's why I've createdGsonPayloadAdapter
but we still needMoshi
forFileWCSessionStore
. I am planning to create anotherWCSessionStore
that usesgson
soon.