Skip to content

Releases: defold/extension-firebase

Show events in Firebase Debug View for Debug Build on iOS

27 Mar 20:38
Compare
Choose a tag to compare
  • Show events in Firebase Debug View for Debug Build on iOS

Update iOS SDK to 10.22.0 version

10 Mar 15:26
Compare
Choose a tag to compare
  • Firebase iOS SDK updated to version 10.22.0

Remove FIR cpp SDK

18 Jan 08:57
Compare
Choose a tag to compare
  • Firebase CPP SDK was removed from the extension, and now the extension uses iOS and Android SDKs directly.
  • BREAKING CHANGES in API:
    • Now firebase uses one callback for all the async event that can be added with firebase.set_callback()
    • firebase.init() replaced with firebase.initialize() and now it's async (the result of operation will be provided in callback, see firebase.MSG_INITIALIZED)
    • see an example in the Firebase manual https://defold.com/extension-firebase/

Special thanks to @Sippul79 for doing most of the work.

Upgraded build.gradle for compatibility with Gradle 7.x

19 Jul 11:25
884f22a
Compare
Choose a tag to compare

FIX: The build.gradle is now compatible with Gradle 7.x and above
CHANGE: The extension uses cocoapods for ios

Fixed issue with new init options

01 Feb 11:43
1d9ca2a
Compare
Choose a tag to compare

FIX: This release fixes a bug with init option tables which was introduced in 1.4.0.

Added options table to init()

31 Jan 13:47
e8425c5
Compare
Choose a tag to compare

NEW: It is now possible to override Firebase options by calling firebase.init() and passing a table with options. Disable default Firebase app creation by setting firebase.no_auto_init in game.project. When overriding options be aware of implications for analytics as described in Google's Firebase documentation. Thanks @dri-richard for the contribution!

Upgraded Firebase C++ SDK to 8.10.0 and iOS SDK to 8.13.0

19 Jul 10:19
af890eb
Compare
Choose a tag to compare

CHANGE: Upgraded Firebase C++ SDK to 8.10.0 and iOS SDK to 8.13.0

Add `FirebaseInstallations.framework`

19 Feb 10:18
Compare
Choose a tag to compare
  • Add FirebaseInstallations.framework to be able to build extension-firebase without any other firebase extensions.

Added firebase.get_installation_auth_token()

18 Feb 15:48
497883e
Compare
Choose a tag to compare

NEW: Added firebase.get_installation_auth_token(cb) to get the installation auth token. This token can for instance be used to verify A/B tests for remote config and cloud messaging. Thanks @dri-richard !

Added additional core iOS frameworks

27 May 09:31
Compare
Choose a tag to compare

The extension can now be correctly built on its own on iOS