extension-firebase-analytics icon indicating copy to clipboard operation
extension-firebase-analytics copied to clipboard

Google Firebase Analytics extension for the Defold game engine

Results 5 extension-firebase-analytics issues
Sort by recently updated
recently updated
newest added

Replace luaL_error with DM_LUA_ERROR https://github.com/defold/extension-firebase-analytics/blob/master/firebase_analytics/src/firebase_analytics.cpp#L173

Using Defold `1.2.179` And extension` 1.5.0` Some users (all of them on Android10, but not 100% sure it it's only because my testers are on Android10, could affect other versions)...

Description says only iOS/Android support. Is HTML5 / desktop platforms possible to support? https://firebase.google.com/docs/web/setup

It would be very convenient to use [setDefaultEventParameters](https://firebase.google.com/docs/reference/kotlin/com/google/firebase/analytics/FirebaseAnalytics#setDefaultEventParameters(android.os.Bundle)) instead of passing the same parameters with every event

This PR add analytics.set_default_event_parameters(). Usage: ``` local default_params = { foo = "bar", bar = 123, baz = false, } analytics.set_default_event_parameters(default_params) ``` Fixes #34