Home / Companies / Firebase / Blog / February 2022

February 2022 Summaries

2 posts from Firebase

Filter
Month: Year:
Post Summaries Back to Blog
Halfbrick and Google used a custom on-device machine learning model in Jetpack Joyride to personalize the digital rewards offered to players for watching rewarded video ads, increasing interactions with the ad unit by 36% in an initial experiment. Rather than relying on random selection or hard-coded rules, the model evaluates gameplay signals such as skill level, recent session details, cause of a player’s last loss, and selected power-ups to recommend a reward suited to each player. Halfbrick collected 129 signals through Google Analytics for Firebase, prepared the data in BigQuery, trained and refined a TensorFlow-based model, and deployed it through Firebase ML, with Remote Config directing devices to current model versions. The model runs locally through TensorFlow Lite, avoiding cloud inference requests and associated per-inference costs, while a portion of sessions continues to receive random rewards to generate fresh training data. A companion codelab demonstrates a simplified version of the workflow with six input features for developers seeking to implement similar personalization.
Feb 15, 2022 994 words in the original blog post.
Firebase Extensions, introduced in 2019, provide prebuilt functionality for Firebase applications across areas such as messaging, image processing, translation, and email triggers. Announced at Firebase Summit 2021, the Google Pay Firebase Extension simplifies accepting Google Pay payments through supported payment service providers without requiring developers to integrate each provider’s individual API. Applications send a Google Pay payment token to a configured Cloud Firestore path, where the extension forwards the request to the selected provider and writes its response back to Firestore for real-time handling. Like other Firebase Extensions, it is open source, allowing developers to customize its behavior and contribute changes.
Feb 11, 2022 298 words in the original blog post.