Search found 19 matches

by mrm83
Sat Mar 28, 2020 12:46 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: v2.8.4 unity 2018 ios
Replies: 3
Views: 8281

Re: v2.8.4 unity 2018 ios

I figured out the problem.

That exception occurs when the wrong encytption password is provided. We are using DID as the password and debug builds vs production builds were assigned different DIDs.
by mrm83
Fri Mar 27, 2020 9:57 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: v2.8.4 unity 2018 ios
Replies: 3
Views: 8281

v2.8.4 unity 2018 ios

Is Unity 2018 iOS supported with v2.8.4? Updated from Unity 5.6 to 2018 and loading no longer works on iOS. Works fine with Android and Editor. Getting error: CryptographicException: Padding is invalid and cannot be removed. at System.Security.Cryptography.RijndaelManagedTransform.DecryptData (Syste...
by mrm83
Fri Feb 23, 2018 3:15 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: The data you are trying to load does not match the Load meth
Replies: 6
Views: 5087

Re: The data you are trying to load does not match the Load

if (ES2.LoadList<CurrencyData> (path).GetType() != typeof(List<CurrencyData>)) { Debug.Log ("NOT CURRENCY"); } else { Debug.Log ("IS CURRENCY"); } List<CurrencyData> tmp = ES2.LoadList<CurrencyData> (path); So I added your suggested check and it returns valid expected data type....
by mrm83
Thu Feb 22, 2018 5:51 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: The data you are trying to load does not match the Load meth
Replies: 6
Views: 5087

Re: The data you are trying to load does not match the Load

Could you please provide some details as to what this error is and what it implies to saving / loading?

Because even with this error, I can still save and still see my data loading. What are the impacts of the error?
by mrm83
Thu Feb 22, 2018 5:47 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: The data you are trying to load does not match the Load meth
Replies: 6
Views: 5087

Re: The data you are trying to load does not match the Load

if (ES2.Exists (path)) { saveProp = ES2.LoadList<ItemProperties> (path); //error happens as soon as the line above is called } Don't think a sample project would help as this problem doesn't happen immediately. I was seeing this error in the editor and then I deleted all saves now the error is gone...
by mrm83
Thu Feb 22, 2018 5:40 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: The data you are trying to load does not match the Load meth
Replies: 6
Views: 5087

The data you are trying to load does not match the Load meth

I havn't had this issue before upgrading, now I am seeing this error with the latest version. "The data you are trying to load does not match the Load method you are using to load it." I need some help figuring out what the problem is as I have no clue. The saves works correctly without er...
by mrm83
Thu Jan 04, 2018 9:56 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Raw file error
Replies: 5
Views: 4642

Re: Raw file error

Ok that is the problem then. I am using SystemInfo.deviceUniqueIdentifier as the file password. ie: save.es?password={SystemInfo.deviceUniqueIdentifier} I am trying to load filedata between 2 different devices. Device2 reading root file from Device1 is fine, but reading each tag fails as the DUI of ...
by mrm83
Thu Jan 04, 2018 9:46 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Raw file error
Replies: 5
Views: 4642

Re: Raw file error

I have multiple tags within the same file. Do each of the tag encrypt individually with the provided password? ie: data.es?encrypt=true&password=123&tag=1 data.es?encrypt=true&password=123&tag=2 data.es?encrypt=true&password=123&tag=3 So even if I change the password of the m...
by mrm83
Thu Jan 04, 2018 9:22 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: Raw file error
Replies: 5
Views: 4642

Raw file error

Hi I have data currently stored to "data.es" with encrypt true, password "123". I upload this data to PHP, and then load it back. The byte data comes back, and I save the raw data to "data2.es" with encrypt true, password "321" However, the data2.es fails to l...
by mrm83
Thu Aug 10, 2017 9:55 pm
Forum: (Legacy) Easy Save 2 General Discussion
Topic: V2.8.2 broken in Unity 5.4.4
Replies: 4
Views: 9433

Re: V2.8.2 broken in Unity 5.4.4

Unfortunately upgrading Unity is not an options for us.

How can I download an older version of the asset which works with 5.4.4?