After much Googling and forum searching, I still haven’t found an answer to this one.
In Unity, my game works just fine. It goes back and forth between two scenes “Menu” and “Game” using UserPrefs to store data. Both are properly added in order under “Build Settings”. However, when I run the APK build on my Android Device, the “Game” scene doesn’t load. Instead the whole app just loads the initial “Menu” scene again, splash screen and all. Here’s the basics:
public static void GotoGame ()
{
SavePlayerPrefs ();
Application.LoadLevel (1);
}
Any ideas?