Skip to main content

I'm encountering an issue where the in_app_purchase event does not show up in Firebase Analytics, even though the user successfully completes a subscription using RevenueCat on Android.

 

Purchases.configure(PurchasesConfiguration.Builder(context, apiKey).build())

Firebase.analytics.appInstanceId.addOnSuccessListener { appInstanceId ->
Purchases.sharedInstance.setFirebaseAppInstanceID(appInstanceId)
}

Other details:

  • I’m using Firebase SDK directly (no third-party wrappers).

  • appInstanceId logs successfully.

The in_app_purchase event is a Firebase SDK event that's automatically collected, unrelated to RevenueCat's implementation.

I’d recommend reviewing the documentation on this page (specifically relating to the in_app_purchase row in the event table): https://support.google.com/firebase/answer/9234069?hl=en


I had made the code change with this doc https://www.revenuecat.com/docs/integrations/third-party-integrations/firebase-integration is it required or not relevant to my case.


Reply