Amir Dora.
Amir Dora.

Reputation: 2707

GooglePlay Console: App doesn't have any in-app products yet.

Okay, I have previously added in-app purchase to apps but this time the warning doesn't go away. In console i get this message "App doesn't have any in-app products yet."

In Google Play Console, I have uploaded an app, i am using Android-in-app-Billing-v3-light. It's an in-app billing library from github. I have added permissions

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

This warning doesn't seem to go away. What i am doing wrong? Did google play change it's requirement? Why it's not allowing me get past this screen or warning. Most questions asked had some error with permission but i have added permission. Also published the app in alpha.

enter image description here

With test id it's showing.

enter image description here

Upvotes: 5

Views: 4329

Answers (2)

Muhammad Haidar
Muhammad Haidar

Reputation: 2019

After the android new update, playstore will show you error when you add Billing permission in your AndroidManifest file

 <uses-permission android:name="com.android.vending.BILLING"/>. <---- Don't add this in the manifest file

Instead, you need to add a new line in your android/app/build.gradle

dependencies {
....
implementation 'com.android.billingclient:billing:4.0.0'. <---- Add this line in android/app/build.gradle
 }
 

Upvotes: 3

Amir Dora.
Amir Dora.

Reputation: 2707

Okay, I found what was causing this issue, Google has updated their terms and services and now you need to create merchant account before you enable in-app purchases.

please create your merchant account, check the screenshot

the link is here https://play.google.com/apps/publish

enter image description here

Upvotes: 6

Related Questions