Skip to content

Android

Re-engage Users through Google Search with Firebase App Indexing (Android)

App Indexing is definitely one of the more heavily underrated features of Firebase. Perhaps, because people don’t know what it does. Your app might be sitting quietly in a user’s app drawer, almost forgotten. Along the line, they might Google search for content your app delivers. When… Read More »Re-engage Users through Google Search with Firebase App Indexing (Android)

Performing Mass Instrumentation Tests with Firebase Test Lab for Android (gCloud Command Line)

Firebase Test Lab’s most prominent feature is almost definitely the Robo Test, but is that the most powerful? I’d beg to differ. While the robo test is handy for creating quick tests that simulate actual user interaction, just like a user’s navigation around the app,… Read More »Performing Mass Instrumentation Tests with Firebase Test Lab for Android (gCloud Command Line)

Topic Messaging with Firebase Cloud Messaging on Android

Topic Messaging is used for sending messages to people subscribed to well, topics. Perfectly suited for publicly available information like news, weather, and the sort. As such, we need to provide a way for users to subscribe before anything else. Subscribing to the Topic FirebaseMessaging.getInstance().subscribeToTopic(“news”)… Read More »Topic Messaging with Firebase Cloud Messaging on Android