Skip to main content
Question

Andorid SDK not showing default offerings in case of multiple placements

  • September 12, 2025
  • 2 replies
  • 41 views

Forum|alt.badge.img

Hi guys!

There is an issue with Flutter SDK (on the latest 9.5.0 as well) for Android with multiple placements.

In my app I have multiple placements with different offerings. Then I set up targeting in the Dashboard without specifying any placements, only the default offering. I would expect that all placements in my app would show that default offering. This is actually the case in iOS. But in Android no paywalls is shown at all.

Many times I forget to list all the placements when targeting and my Android app won’t show paywalls in missed placements. Recently I run an experiment without specifying placements in the experiment settings and after 3 days I figured that the Android app wasn’t showing any paywalls at all because of this issue :(

You can find more information in this GitHub issue:

https://github.com/RevenueCat/purchases-flutter/issues/1225

This post has been closed for comments

2 replies

Forum|alt.badge.img+8
  • RevenueCat Staff
  • September 17, 2025

Hi ​@yuri-47921c so sorry to hear you are still experiencing this and for the delay on that GitHub issue, looking at our system it seems this was de-prioritized and fell under the radar. I have raised this again with the team so this can get resolved. 


Forum|alt.badge.img+8
  • RevenueCat Staff
  • October 16, 2025

Hi ​@yuri-47921c just updating that I am still discussing fixing this internally with the team and will update here once this is fixed. In the meantime like you already discussed via a support ticket, you can workaround this by using a fallback as follows:

offering = await Purchases.getCurrentOfferingForPlacement(placement) ?? (await Purchases.getOfferings())?.current;