The Customer Data Platform for Developers
Website · Documentation · Community Slack
This repository contains the resources and assets required to integrate the RudderStack iOS SDK with Firebase.
For more information on configuring Firebase as a destination in RudderStack and the supported events and their mappings, refer to the Firebase documentation.
Important: This device mode integration is supported for Firebase v8.15.0 and above. |
---|
- Add Firebase as a destination in the RudderStack dashboard.
- Download the
GoogleService-Info.plist
from your Firebase console and place it in your project. RudderFirebase
is available through CocoaPods. To install it, add the following line to yourPodfile
:
pod 'RudderFirebase', '~> 1.2.0'
- Run the
pod install
command.
import RudderFirebase
@import RudderFirebase;
Place the following in your AppDelegate
under the didFinishLaunchingWithOptions
method.
RSConfig *config = [[RSConfig alloc] initWithWriteKey:WRITE_KEY];
[config dataPlaneURL:DATA_PLANE_URL];
[[RSClient sharedInstance] configureWith:config];
[[RSClient sharedInstance] addDestination:[[RudderFirebaseDestination alloc] init]];
let config: RSConfig = RSConfig(writeKey: WRITE_KEY)
.dataPlaneURL(DATA_PLANE_URL)
RSClient.sharedInstance().configure(with: config)
RSClient.sharedInstance().addDestination(RudderFirebaseDestination())
Follow the steps listed in the RudderStack iOS SDK repo to start sending events to Firebase.
RudderStack is the customer data platform for developers. With RudderStack, you can build and deploy efficient pipelines that collect customer data from every app, website, and SaaS platform, then activate your data in your warehouse, business, and marketing tools.
Start building a better, warehouse-first CDP that delivers complete, unified data to every part of your customer data stack. Sign up for RudderStack Cloud today. |
---|
For queries on configuring or using this integration, start a conversation in our Slack community.