Thank you for the feedback. You can save data on any platform with PlayerPrefs. Example:
I want to save current level: PlayerPrefs.SetInt("currentLevel", 4);
If I want to then read the data use this: PlayerPrefs.GetInt("currentLevel");
You can use this with int, float and string variable types.
If you have any questions feel free to ask.