Subscriptions, part 3

Add subscriptions in Google play console

Open your app in the Google Play console, then, from the side bar, scroll to the subscriptions.

Then, you need to create 3 subscriptions plans under the IDs (basic, premium, standard)

Please make sure that the ID is all small letters like this "basic"

After you create a subscription, scroll down and create a base plan. make sure to give it the same ID (ex. basic).

Choose prepaid, make it paid monthly, and allow extension.

Then you'll need to add a price. Please make sure to make the price the same as shown in the app. if you want to change the price, you'll need to change it from the source code as well, from the file ui/subscriptions/SubscriptionsComponents.kt

let's continue by adding the prices without any changes from the app.

basic -> $6.99

standard -> $13.99

premium -> $24.99

Now, all you have to do is to activate the subscriptions.

Last updated