Skip Navigation
[TIL] It's possible to see console prints on Android.

On Windows: Open a command prompt, and type: adb shell Then, adb logcat | grep godot

On Mac/Linux: Open a terminal, and type: adb logcat | grep godot This will show your console in realtime. To exit, just press CTRL + C.

I've seen some people say to use the appname, like your.app.name. If you use just your appname, you will get info about your app, but you won't get any print statements. Because print statements are only prefixed with "godot" and not your app name for some reason. What I do is try to include "godot" in my appname, so that I get the best of both worlds. The appname is in Export > Options > Package > Unique Name

EDIT: You can debug Android Godot apps inside the Godot Editor just like normal Godot games by checking: Debug > Deploy with Remote Debug Next time you run the project on your Android device, print statements and other info will show up in the Godot Editor.

0
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)KE
Kenetics @lemmy.world
Posts 2
Comments 0