Search code examples
androidreact-nativegoogle-play-consolesubscription

Unable to access subscriptions tab in google play console


I am currently working on adding subscriptions to my android app using React Native. However, when I click on the subscriptions tab all I see is "Upload a new APK"

enter image description here

When clicking on this button, I am simply navigated to the closed testing tab rather than the subscriptions tab.

enter image description here

I am attempting to integrate subscriptions with revenue cat but am unable to do so as I cannot navigate to the subscriptions tab. Any help would be greatly appreciated.

Also I have already included this line in my Manifest:


Solution

  • Add this line to AndroidManifest.xml with the other "uses-permission" tags.

    <uses-permission android:name="com.android.vending.BILLING" />

    Create a new app bundle with this tag added, upload it to Google Play Console, and add create a new release.

    The button to create a new subscription will then be available in the subscriptions page.

    (The "In-app products" page in Play Console has a better error message for this. That's how I found the solution for myself.)

    edit (I just noticed you're using revenuecat) The revenuecat package should add this for you. Create a new build after including revenuecat in your project. **