We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Events like the predefined tutorial_begin have no arguments, so they can be logged with a null Bundle, but this check is preventing it:
tutorial_begin
null
Bundle
godot-android-plugin-firebase/src/main/java/org/godotengine/androidplugin/firebase/Firebase.java
Line 246 in 6f1a46f
My workaround so far is sending a dummy Dictionary, like { "_": "" }.
Dictionary
{ "_": "" }
Ideally, the method should allow null and empty Dictionary.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Events like the predefined
tutorial_begin
have no arguments, so they can be logged with anull
Bundle
, but this check is preventing it:godot-android-plugin-firebase/src/main/java/org/godotengine/androidplugin/firebase/Firebase.java
Line 246 in 6f1a46f
My workaround so far is sending a dummy
Dictionary
, like{ "_": "" }
.Ideally, the method should allow
null
and emptyDictionary
.The text was updated successfully, but these errors were encountered: