I have created a simple scriptable object with a list, 1 button and something to the list, second load its into the text ui. When I test this on Unity, it works when I already build the app from the build settings, android on the other hand doesnt. Anyone know why, or does it even work on android? Thanks!
2 main scripts: https://drive.google.com/file/d/1QS9SjzEJ5BdIhu3PPpg-ePSqktm_6Um8/view?usp=sharing, https://drive.google.com/file/d/1T9iV_zK8NlvCI2jFkEEAafkrMFAsoFMa/view?usp=sharing EDIT: proof: https://drive.google.com/file/d/1rkN4W-u3G6-Uj7ReSkVRVtLKI4zgCwEh/view?usp=sharing mp4 file btw
Scriptable Objects are platform-independent which means they work on any platform.
Here's what Unity's official Scriptable Object's documentation says:
In order to save data to Scriptable Object (when you click on Save button in UI) you have to save the Scriptable Object to player prefs.
Something like this:
That's it in general