Firebase Analytics Android 1.0 Scripts 4.2 Community
Submitted by user BasilYes; MIT; 2024-01-20
Firebase Analytics implementation for Godot 4.2+
Usage
Download latest release and enable plugin in godot project settings.
For log event use function in singleton FirebaseAnalytics:
func logEvent(event: String, params: Dictionary) -> void:
In params dictionary keys mast be String type, values can be int, float or String.
Usage example:
func _on_Button_pressed():
FirebaseAnalytics.logEvent("test",
{
"value1": 1,
"value2": "2",
"value3": 0.3
})
View files Download Submit an issue Recent Edits