GoDot logo blinks continuously n app dosent loads in my Android phone . Why ?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Anand
:warning: Old Version Published before Godot 3 was released.

Hi , I m making an android endless runner game.
It works quite good in the GD editor but on exporting n trying ot run in my device (samsung galaxy j1 ) , dame dosent loads .
And GODOT LOGO BLINKS CONTINUOSULY
I have used 8 timers and 16 sprites in that game

:bust_in_silhouette: Reply From: volzhs

It’s because some errors occurred when starting game.
You need check logs with adb logcat

:bust_in_silhouette: Reply From: DriNeo

I had this problem when the paths are incorrectly typed.
For example: preload("/myFile.scn") instead of preload("res://myFile.scn")worked fine on desktop but not in Android.

Also worth noting that paths in Android are case sensitive so preload("res://myfile.scn") is not the same as preload("res:myFile.scn") and will also cause the game to fail when loading.

derekjwhitten | 2019-03-16 23:43

You saved my butt with this one. AWESOME. Thanks so much for the help!

Booticus Maximus | 2021-11-24 01:37

:bust_in_silhouette: Reply From: skang1

i had the same problem. in my case, i installed the wrong export template version different from that of the godot editor. the version of the template should the same as that of the editor.