Search found 2 matches

by nacheon
Tue Dec 26, 2023 2:22 pm
Forum: General Discussion
Topic: Saving does not work on some mobile devices
Replies: 3
Views: 1167

Re: Saving does not work on some mobile devices

The above save function is used when the user first runs the game. The data to be saved is received from the server and stored locally. This issue is not caused by app termination. And, because this problem is occurring to some users, it is difficult to reproduce in a test environment. However, in t...
by nacheon
Sat Dec 23, 2023 12:52 pm
Forum: General Discussion
Topic: Saving does not work on some mobile devices
Replies: 3
Views: 1167

Saving does not work on some mobile devices

hello, Currently, ES3 is used in mobile games to locally store binary data (zip-compressed xml data) received from the server. The storage function is as follows. public void UpdateCommonData(CommonDataType type, byte[] compressedData) { ES3.SaveRaw(compressedData, getCommonDataFileName(type)); } It...