I have sent my apk to my Samsung Galaxy S and I can run my test game. The problem is that it only shows my splash screen and then stops. I clicked add current level in the build settings. So, I’m assuming you have to make a script to boot you from the splash screen to the actual first level? If, so can you please link me to a video or thread where i can see how to go to a new level after the splash screen. Not asking for any scripts just where i can go to learn how. Thanks. It works fine in my editor.
My first recommendation is to view the messages on logcat, or even better, run logcat while running your game. It sounds like your game is doing something unexpected and crashes out without warning, which can occasionally happen without any warning or force close box.
Second choice is to look at how much memory your scene is using. This behaviour usually signifies your device can’t handle the amount of memory your scene is allocating. I had to handle this issue yesterday.
You do not need to have a script to start the scene after the splash screen, you must have some other problem.
Try different values in the build ‘player’ settings.
ok thanks guys
SOLVED