Skip to content
Kopfenheim edited this page Jan 31, 2018 · 14 revisions

This Wiki describes the various functions that can be accessed from GDScript for the various features provided by the module.

If you are having any issues with the module then you can try debugging using Android ADB's logcat in your terminal. You will need to have the Android SDK or Android Studio installed on your computer to use Android ADB. If you have Android Studio installed then you can use the built in logcat functionality of Android Studio. But if you dont wanna use Android Studio, then you can cd into your computer's directory where adb is located and then you can use a command like this:

adb logcat -v time godot:* gpgs:* AndroidRuntime:* XXX:* *:S

This command means that

-v			Produce a verbose output
time			Show the timestamp for the log
godot:* 		show all the message types for the TAG godot
gpgs:* 			show all the message types for the TAG gpgs
AndroidRuntime:* 	show all the message types for the TAG AndroidRuntime
XXX:*			show all the message types for the TAG XXX
*:S 			silence everything else

NOTE: This is a new module and some aspects of the Wiki are still being written and finalized.