- Firebase CPP SDK was removed from the extension, and now the extension uses iOS and Android SDKs directly.
- BREAKING CHANGES in API:
- Now
firebase.remoteconfig
uses one callback for all the async event that can be added withfirebase.remoteconfig.set_callback()
firebase.remoteconfig.init()
replaced withfirebase.remoteconfig.initialize()
and now it's async (the result of operation will be provided in callback, seefirebase.remoteconfig.MSG_INITIALIZED
)- see an example in the Firebase manual https://defold.com/extension-firebase-remoteconfig/
- Now
Special thanks to @Sippul79 for doing most of the work.