Skip to main content
Question

No duration in the product listing

  • May 4, 2026
  • 1 reply
  • 17 views

Forum|alt.badge.img

Hi,

 

google play - I have a subscription called premium, under that 3 base plans, premium7days, premium30days, premium90days.

 

On the app the 3 products all show up as: Premium Access (myapp) $xx.xx. the only difference being the price. I have figured out the value that is shown comes from google play Subscription, Name field. 

 

How is this supposed to work, do I just need to manipulate it in code? Or have I missed something somewhere.

1 reply

alejandra-wetsch
RevenueCat Staff
Forum|alt.badge.img+6

Hey ​@lurkn-37595d

Thank you for reaching out!

You’re correct: the name you see for all your base plans comes from Google Play and is inherited from the subscription name, “Premium” in your case.

Nothing is misconfigured in this case. To provide a different title to each of your base plans in your app, you can use the StoreProduct object returned by the SDK. On each StoreProduct, you have access to:
- subscriptionPeriod - tells you the billing period (weekly, monthly, etc.)
- localizedPriceString - the formatted price for the user's locale
- price - the raw price

You can use the subscriptionPeriod to build labels like "Weekly", "Monthly", and "3 Months", and combine them with the price to present a clear offer to the user.

I hope this helps!