Skip to content

Releases: defold/extension-firebase

Update iOS SDK to 11.15.0 version

31 Jul 05:46
3afba87

Choose a tag to compare

  • Firebase iOS SDK updated to version 11.15.0
  • Minimum iOS version increased to iOS 13.0

Show events in Firebase Debug View for Debug Build on iOS

27 Mar 20:38

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

Choose a tag to compare

  • Firebase iOS SDK updated to version 10.22.0

Remove FIR cpp SDK

18 Jan 08:57

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

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

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

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

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

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

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 !